Archived
1
0

minor changes

This commit is contained in:
Erick
2022-02-05 00:45:57 +01:00
parent e5cf1f5372
commit 645261f07a
+1 -1
View File
@@ -130,7 +130,7 @@ void read_image_file(FILE* file) {
int read_image(const char* image_path) {
FILE* file = fopen(image_path, "rb");
if (!file) { return 0; };
if(!file) return 0;
read_image_file(file);
fclose(file);