mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 16:20:39 +00:00
playlist: Fix erroneous return value.
This should actually be false, since it failed to read the playlist file in this case.
This commit is contained in:
parent
37a7e56a9b
commit
8244c74b31
@ -199,7 +199,7 @@ static bool content_playlist_read_file(
|
|||||||
if (file)
|
if (file)
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (playlist->size = 0; playlist->size < playlist->cap; )
|
for (playlist->size = 0; playlist->size < playlist->cap; )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user