Skip to content

Commit

Permalink
Merge pull request #5597 from JosJuice/bs2-hle-default
Browse files Browse the repository at this point in the history
Skip GameCube IPL by default
  • Loading branch information
Helios747 committed Jun 11, 2017
2 parents 1bf62cc + b3ac6de commit 67dbbc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/ConfigManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 67dbbc6

Please sign in to comment.