diff options
author | wwylele <wwylele@gmail.com> | 2016-11-30 10:32:09 +0100 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2016-12-07 19:52:42 +0100 |
commit | 84e78790ab3f3e8883493b18946e97328d921774 (patch) | |
tree | 31b000e21876310ccd91e1746c86b643908b5a27 /src/citra_qt/config.cpp | |
parent | Merge pull request #2232 from wwylele/other-save (diff) | |
download | yuzu-84e78790ab3f3e8883493b18946e97328d921774.tar yuzu-84e78790ab3f3e8883493b18946e97328d921774.tar.gz yuzu-84e78790ab3f3e8883493b18946e97328d921774.tar.bz2 yuzu-84e78790ab3f3e8883493b18946e97328d921774.tar.lz yuzu-84e78790ab3f3e8883493b18946e97328d921774.tar.xz yuzu-84e78790ab3f3e8883493b18946e97328d921774.tar.zst yuzu-84e78790ab3f3e8883493b18946e97328d921774.zip |
Diffstat (limited to '')
-rw-r--r-- | src/citra_qt/config.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp index 06a4e9d25..c904c4b00 100644 --- a/src/citra_qt/config.cpp +++ b/src/citra_qt/config.cpp @@ -72,7 +72,8 @@ void Config::ReadValues() { qt_config->beginGroup("System"); Settings::values.is_new_3ds = qt_config->value("is_new_3ds", false).toBool(); - Settings::values.region_value = qt_config->value("region_value", 1).toInt(); + Settings::values.region_value = + qt_config->value("region_value", Settings::REGION_VALUE_AUTO_SELECT).toInt(); qt_config->endGroup(); qt_config->beginGroup("Miscellaneous"); |