From 32766f00179ccb0397471af573ecbd1400b26790 Mon Sep 17 00:00:00 2001 From: radius Date: Thu, 25 Oct 2018 18:00:32 -0500 Subject: [PATCH] [content] CRC calculation for needs_fullpath should be within else block --- tasks/task_content.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tasks/task_content.c b/tasks/task_content.c index c366ab1673..8966aecf33 100644 --- a/tasks/task_content.c +++ b/tasks/task_content.c @@ -615,10 +615,11 @@ static bool content_file_load( error_string)) goto error; #endif + RARCH_LOG("%s\n", msg_hash_to_str(MSG_CONTENT_LOADING_SKIPPED_IMPLEMENTATION_WILL_DO_IT)); + content_rom_crc = file_crc32(0, path); + RARCH_LOG("CRC32: 0x%x .\n", (unsigned)content_rom_crc); + } - RARCH_LOG("%s\n", msg_hash_to_str(MSG_CONTENT_LOADING_SKIPPED_IMPLEMENTATION_WILL_DO_IT)); - content_rom_crc = file_crc32(0, path); - RARCH_LOG("CRC32: 0x%x .\n", (unsigned)content_rom_crc); } load_info.content = content;