Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Boot: Automatically temporarily disable PAL60 for NTSC Wii games.
  • Loading branch information
AdmiralCurtiss committed Jun 14, 2015
1 parent 8ffe745 commit 2e5e724
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/Core/Core/BootManager.cpp
Expand Up @@ -257,6 +257,12 @@ bool BootCore(const std::string& _rFilename)
config_cache.bSetEXIDevice[1] = true;
}

// Some NTSC Wii games such as Doc Louis's Punch-Out!! and 1942 (Virtual Console) crash if the PAL60 option is enabled
if (StartUp.bWii && StartUp.bNTSC)
{
StartUp.bPAL60 = false;
}

SConfig::GetInstance().m_SYSCONF->SetData("IPL.PGS", StartUp.bProgressive);
SConfig::GetInstance().m_SYSCONF->SetData("IPL.E60", StartUp.bPAL60);

Expand Down

0 comments on commit 2e5e724

Please sign in to comment.