mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
Fix warning.
This commit is contained in:
parent
50b9248624
commit
7903cc5658
@ -314,7 +314,7 @@ bool rpng_load_image_argb(const char *path, uint32_t **data, unsigned *width, un
|
|||||||
bool ret = true;
|
bool ret = true;
|
||||||
FILE *file = fopen(path, "rb");
|
FILE *file = fopen(path, "rb");
|
||||||
if (!file)
|
if (!file)
|
||||||
return NULL;
|
return false;
|
||||||
|
|
||||||
fseek(file, 0, SEEK_END);
|
fseek(file, 0, SEEK_END);
|
||||||
long file_len = ftell(file);
|
long file_len = ftell(file);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user