Revert "Fix crc32 comparision (#13884)" (#13886)

This reverts commit f377c0d04148d37525e98b3047ffbae559f445a5.
This commit is contained in:
Autechre 2022-04-25 17:06:04 +01:00 committed by GitHub
parent 3d0f8c1ed5
commit f42591305d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -288,7 +288,7 @@ static void task_netplay_crc_scan_handler(retro_task_t *task)
playlist_path = playlist_entry->path;
playlist_crc32 = playlist_entry->crc32;
if (have_crc && string_starts_with(state->content_crc, playlist_crc32))
if (have_crc && string_is_equal(playlist_crc32, state->content_crc))
{
RARCH_LOG("[Lobby]: CRC match %s\n", playlist_crc32);
strlcpy(state->content_path, playlist_path, sizeof(state->content_path));