From 1bd7fefec16bc39ae3dd4e0750333673815e2d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Wed, 5 Jul 2017 10:53:54 +0200 Subject: [PATCH] Config: Set DOL/ELF region to UNKNOWN This allows the region to be chosen by the user. --- Source/Core/Core/ConfigManager.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index 39ac44e5a1..2341fdfba3 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -881,12 +881,7 @@ struct SetGameMetadata config->bWii = executable.reader->IsWii(); - // TODO: Right now GC homebrew boots in NTSC and Wii homebrew in PAL. - // This is intentional so that Wii homebrew can boot in both 50Hz and 60Hz, - // without forcing all GC homebrew to 50Hz. - // In the future, it probably makes sense to add a Region setting for homebrew somewhere in - // the emulator config. - *region = config->bWii ? DiscIO::Region::PAL : DiscIO::Region::NTSC_U; + *region = DiscIO::Region::UNKNOWN_REGION; // Strip the .elf/.dol file extension and directories before the name SplitPath(executable.path, nullptr, &config->m_debugger_game_id, nullptr);