Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #8711 from Ebola16/SDDE
Set Insert SD Card default value to true
  • Loading branch information
JMC47 committed Apr 16, 2020
2 parents 3629e75 + fdc9ea6 commit 55ed980
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Core/Core/Config/MainSettings.cpp
Expand Up @@ -74,7 +74,7 @@ ConfigInfo<bool> GetInfoForSimulateKonga(u32 channel)
return {{System::Main, "Core", fmt::format("SimulateKonga{}", channel)}, false};
}

const ConfigInfo<bool> MAIN_WII_SD_CARD{{System::Main, "Core", "WiiSDCard"}, false};
const ConfigInfo<bool> MAIN_WII_SD_CARD{{System::Main, "Core", "WiiSDCard"}, true};
const ConfigInfo<bool> MAIN_WII_SD_CARD_WRITABLE{{System::Main, "Core", "WiiSDCardWritable"}, true};
const ConfigInfo<bool> MAIN_WII_KEYBOARD{{System::Main, "Core", "WiiKeyboard"}, false};
const ConfigInfo<bool> MAIN_WIIMOTE_CONTINUOUS_SCANNING{
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/ConfigManager.cpp
Expand Up @@ -510,7 +510,7 @@ void SConfig::LoadCoreSettings(IniFile& ini)
core->Get(fmt::format("AdapterRumble{}", i), &m_AdapterRumble[i], true);
core->Get(fmt::format("SimulateKonga{}", i), &m_AdapterKonga[i], false);
}
core->Get("WiiSDCard", &m_WiiSDCard, false);
core->Get("WiiSDCard", &m_WiiSDCard, true);
core->Get("WiiKeyboard", &m_WiiKeyboard, false);
core->Get("WiimoteContinuousScanning", &m_WiimoteContinuousScanning, false);
core->Get("WiimoteEnableSpeaker", &m_WiimoteEnableSpeaker, false);
Expand Down

0 comments on commit 55ed980

Please sign in to comment.