summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLéo Lam <leo@innovatetechnologi.es>2017-07-05 10:53:54 +0200
committerLéo Lam <leo@innovatetechnologi.es>2017-08-11 20:28:33 +0800
commit1bd7fefec16bc39ae3dd4e0750333673815e2d1d (patch)
tree9dddda10642dddea24e8960d6969147135bbac28 /Source
parentbec35b287e4c9bd92e77812a148b05171a27842a (diff)
Config: Set DOL/ELF region to UNKNOWN
This allows the region to be chosen by the user.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/ConfigManager.cpp7
1 files changed, 1 insertions, 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);