From 59f055f4b9d4fd2c89f0f109e791d7a09693f6c0 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Thu, 30 Apr 2020 01:21:18 +1000 Subject: [PATCH] HostInterface: Make title-based memory cards the default --- src/core/host_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index fc41d49c6..071c3072f 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -959,7 +959,7 @@ void HostInterface::SetDefaultSettings(SettingsInterface& si) si.SetStringValue("Controller1", "Type", Settings::GetControllerTypeName(ControllerType::DigitalController)); si.SetStringValue("Controller2", "Type", Settings::GetControllerTypeName(ControllerType::None)); - si.SetStringValue("MemoryCards", "Card1Type", "PerGame"); + si.SetStringValue("MemoryCards", "Card1Type", Settings::GetMemoryCardTypeName(MemoryCardType::PerGameTitle)); si.SetStringValue("MemoryCards", "Card1Path", "memcards/shared_card_1.mcd"); si.SetStringValue("MemoryCards", "Card2Type", "None"); si.SetStringValue("MemoryCards", "Card2Path", "memcards/shared_card_2.mcd");