From 9fec6d4a1883fd161ada18f480ebb9b528682de5 Mon Sep 17 00:00:00 2001 From: benoa Date: Thu, 10 Jan 2019 20:16:36 +0100 Subject: [PATCH] Wii: Skip CRC. Avoid an unnecessary delay. --- tasks/task_content.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasks/task_content.c b/tasks/task_content.c index 25bed6a350..c3d3a8112b 100644 --- a/tasks/task_content.c +++ b/tasks/task_content.c @@ -617,9 +617,14 @@ static bool content_file_load( error_string)) goto error; #endif + +/* It adds up to 5 seconds when loading large roms. + * It's mainly used for network play which isn't available for these platforms. */ +#if !defined(GEKKO) 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); +#endif } }