1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

only check for identical paths, not CRC too

This commit is contained in:
radius 2016-01-26 22:10:24 -05:00
parent 5016ebd344
commit 4165c89385

View File

@ -125,7 +125,7 @@ bool content_playlist_entry_exists(content_playlist_t *playlist,
return false;
for (i = 0; i < playlist->size; i++)
if (string_is_equal(playlist->entries[i].path, path) || string_is_equal(playlist->entries[i].crc32, crc32))
if (string_is_equal(playlist->entries[i].path, path))
return true;
return false;