From 7129611e65096ba2cbe8266f6cb068a9b18981d8 Mon Sep 17 00:00:00 2001 From: JamePeng Date: Wed, 20 Apr 2016 18:12:05 +0800 Subject: 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 --- src/citra/config.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/citra') 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"); -- cgit v1.2.3