diff options
| author | 2016-12-29 22:09:01 -0500 | |
|---|---|---|
| committer | 2016-12-29 22:09:01 -0500 | |
| commit | f556d6ee90aae2d81cd9770c0b3259ac88ae8fe4 (patch) | |
| tree | 63472a7c6dbd7bc9f77ba503800afdaf36982da5 /src/citra_qt/config.cpp | |
| parent | Merge pull request #2367 from JayFoxRox/lighting-lut-quickfix (diff) | |
| parent | Config: auto-select region and language (diff) | |
| download | yuzu-f556d6ee90aae2d81cd9770c0b3259ac88ae8fe4.tar.gz yuzu-f556d6ee90aae2d81cd9770c0b3259ac88ae8fe4.tar.xz yuzu-f556d6ee90aae2d81cd9770c0b3259ac88ae8fe4.zip | |
Merge pull request #2240 from wwylele/auto-region
Config: auto-select region and language
Diffstat (limited to 'src/citra_qt/config.cpp')
| -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() { | |||
| 72 | 72 | ||
| 73 | qt_config->beginGroup("System"); | 73 | qt_config->beginGroup("System"); |
| 74 | Settings::values.is_new_3ds = qt_config->value("is_new_3ds", false).toBool(); | 74 | Settings::values.is_new_3ds = qt_config->value("is_new_3ds", false).toBool(); |
| 75 | Settings::values.region_value = qt_config->value("region_value", 1).toInt(); | 75 | Settings::values.region_value = |
| 76 | qt_config->value("region_value", Settings::REGION_VALUE_AUTO_SELECT).toInt(); | ||
| 76 | qt_config->endGroup(); | 77 | qt_config->endGroup(); |
| 77 | 78 | ||
| 78 | qt_config->beginGroup("Miscellaneous"); | 79 | qt_config->beginGroup("Miscellaneous"); |