diff options
author | JamePeng <jame_peng@sina.com> | 2016-04-20 18:12:05 +0800 |
---|---|---|
committer | JamePeng <jame_peng@sina.com> | 2016-04-20 18:12:05 +0800 |
commit | 7129611e65096ba2cbe8266f6cb068a9b18981d8 (patch) | |
tree | e411b0e7d50ece8adee68ddcd1bc1b6936b0b91e /src/citra/config.cpp | |
parent | a4c5d8fd50e32545494a4ac158892310dfe98489 (diff) |
Implement CheckNew3DS and CheckNew3DSApp
Append an item[is_new3ds] to config file[System] group
Implement APT::SetNSStateField,it will update the unknown NS_state_field
Diffstat (limited to 'src/citra/config.cpp')
-rw-r--r-- | src/citra/config.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 6b6617352..ebea5f840 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp @@ -73,8 +73,9 @@ void Config::ReadValues() { // Data Storage Settings::values.use_virtual_sd = sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); - // System Region - Settings::values.region_value = sdl2_config->GetInteger("System Region", "region_value", 1); + // System + Settings::values.is_new3ds = sdl2_config->GetBoolean("System", "is_new3ds", false); + Settings::values.region_value = sdl2_config->GetInteger("System", "region_value", 1); // Miscellaneous Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info"); |