mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Wii: Skip CRC. Avoid an unnecessary delay.
This commit is contained in:
parent
24ce1aee21
commit
9fec6d4a18
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue