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/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/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 29462c982..98f093258 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -89,7 +89,8 @@ void Config::ReadValues() { | |||
| 89 | 89 | ||
| 90 | // System | 90 | // System |
| 91 | Settings::values.is_new_3ds = sdl2_config->GetBoolean("System", "is_new_3ds", false); | 91 | Settings::values.is_new_3ds = sdl2_config->GetBoolean("System", "is_new_3ds", false); |
| 92 | Settings::values.region_value = sdl2_config->GetInteger("System", "region_value", 1); | 92 | Settings::values.region_value = |
| 93 | sdl2_config->GetInteger("System", "region_value", Settings::REGION_VALUE_AUTO_SELECT); | ||
| 93 | 94 | ||
| 94 | // Miscellaneous | 95 | // Miscellaneous |
| 95 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info"); | 96 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info"); |