Merge pull request #1694 from ggrtk/always-save-controller-type

Settings: Always save controller type to settings interface
This commit is contained in:
Connor McLaughlin 2021-02-27 04:01:34 +10:00 committed by GitHub
commit bd9cb67565
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -387,15 +387,11 @@ void Settings::Save(SettingsInterface& si) const
si.SetBoolValue("BIOS", "PatchTTYEnable", bios_patch_tty_enable); si.SetBoolValue("BIOS", "PatchTTYEnable", bios_patch_tty_enable);
si.SetBoolValue("BIOS", "PatchFastBoot", bios_patch_fast_boot); si.SetBoolValue("BIOS", "PatchFastBoot", bios_patch_fast_boot);
if (controller_types[0] != ControllerType::None) for (u32 i = 0; i < NUM_CONTROLLER_AND_CARD_PORTS; i++)
si.SetStringValue("Controller1", "Type", GetControllerTypeName(controller_types[0])); {
else si.SetStringValue(TinyString::FromFormat("Controller%u", i + 1u), "Type",
si.DeleteValue("Controller1", "Type"); GetControllerTypeName(controller_types[i]));
}
if (controller_types[1] != ControllerType::None)
si.SetStringValue("Controller2", "Type", GetControllerTypeName(controller_types[1]));
else
si.DeleteValue("Controller2", "Type");
si.SetStringValue("MemoryCards", "Card1Type", GetMemoryCardTypeName(memory_card_types[0])); si.SetStringValue("MemoryCards", "Card1Type", GetMemoryCardTypeName(memory_card_types[0]));
si.SetStringValue("MemoryCards", "Card1Path", memory_card_paths[0].c_str()); si.SetStringValue("MemoryCards", "Card1Path", memory_card_paths[0].c_str());