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
This commit is contained in:
JamePeng 2016-04-20 18:12:05 +08:00
parent a4c5d8fd50
commit 7129611e65
11 changed files with 145 additions and 14 deletions

View file

@ -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");