diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-06-11 10:47:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-11 10:47:56 -0700 |
| commit | 67dbbc67c0b3fa09e4f5c94ea67a83190c4e1a5e (patch) | |
| tree | 4b3a077ae656f312a4e1e7f413f0c271cbb7b7a9 /Source/Core | |
| parent | 1bf62cc0846fb295356c7f2a090d690c9ee8c57c (diff) | |
| parent | b3ac6de7f8c7e097c5388c4ea7443bde34284c7e (diff) | |
Merge pull request #5597 from JosJuice/bs2-hle-default
Skip GameCube IPL by default
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/ConfigManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/ConfigManager.cpp b/Source/Core/Core/ConfigManager.cpp index 2135d0730c..dcb34bacf4 100644 --- a/Source/Core/Core/ConfigManager.cpp +++ b/Source/Core/Core/ConfigManager.cpp @@ -234,7 +234,7 @@ void SConfig::SaveCoreSettings(IniFile& ini) { IniFile::Section* core = ini.GetOrCreateSection("Core"); - core->Set("HLE_BS2", bHLE_BS2); + core->Set("SkipIPL", bHLE_BS2); core->Set("TimingVariance", iTimingVariance); core->Set("CPUCore", iCPUCore); core->Set("Fastmem", bFastmem); @@ -543,7 +543,7 @@ void SConfig::LoadCoreSettings(IniFile& ini) { IniFile::Section* core = ini.GetOrCreateSection("Core"); - core->Get("HLE_BS2", &bHLE_BS2, false); + core->Get("SkipIPL", &bHLE_BS2, true); #ifdef _M_X86 core->Get("CPUCore", &iCPUCore, PowerPC::CORE_JIT64); #elif _M_ARM_64 |
