From f42591305d751dadb2a4647c60bef0a2fd3dce99 Mon Sep 17 00:00:00 2001 From: Autechre Date: Mon, 25 Apr 2022 17:06:04 +0100 Subject: [PATCH] Revert "Fix crc32 comparision (#13884)" (#13886) This reverts commit f377c0d04148d37525e98b3047ffbae559f445a5. --- tasks/task_netplay_find_content.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/task_netplay_find_content.c b/tasks/task_netplay_find_content.c index 4fc2a651e2..975c1d1a2a 100644 --- a/tasks/task_netplay_find_content.c +++ b/tasks/task_netplay_find_content.c @@ -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));