mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-01 10:31:31 +02:00
Merge pull request #8711 from Ebola16/SDDE
Set Insert SD Card default value to true
This commit is contained in:
commit
55ed980620
@ -74,7 +74,7 @@ ConfigInfo<bool> GetInfoForSimulateKonga(u32 channel)
|
|||||||
return {{System::Main, "Core", fmt::format("SimulateKonga{}", channel)}, false};
|
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_SD_CARD_WRITABLE{{System::Main, "Core", "WiiSDCardWritable"}, true};
|
||||||
const ConfigInfo<bool> MAIN_WII_KEYBOARD{{System::Main, "Core", "WiiKeyboard"}, false};
|
const ConfigInfo<bool> MAIN_WII_KEYBOARD{{System::Main, "Core", "WiiKeyboard"}, false};
|
||||||
const ConfigInfo<bool> MAIN_WIIMOTE_CONTINUOUS_SCANNING{
|
const ConfigInfo<bool> MAIN_WIIMOTE_CONTINUOUS_SCANNING{
|
||||||
|
@ -510,7 +510,7 @@ void SConfig::LoadCoreSettings(IniFile& ini)
|
|||||||
core->Get(fmt::format("AdapterRumble{}", i), &m_AdapterRumble[i], true);
|
core->Get(fmt::format("AdapterRumble{}", i), &m_AdapterRumble[i], true);
|
||||||
core->Get(fmt::format("SimulateKonga{}", i), &m_AdapterKonga[i], false);
|
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("WiiKeyboard", &m_WiiKeyboard, false);
|
||||||
core->Get("WiimoteContinuousScanning", &m_WiimoteContinuousScanning, false);
|
core->Get("WiimoteContinuousScanning", &m_WiimoteContinuousScanning, false);
|
||||||
core->Get("WiimoteEnableSpeaker", &m_WiimoteEnableSpeaker, false);
|
core->Get("WiimoteEnableSpeaker", &m_WiimoteEnableSpeaker, false);
|
||||||
|
Loading…
Reference in New Issue
Block a user