mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 00:32:53 +00:00
Merge pull request #2520 from AdmiralCurtiss/wii-pal60
Properly set default video mode for PAL Wii games.
This commit is contained in:
commit
2f577e147b
@ -226,7 +226,11 @@ bool CBoot::BootUp()
|
|||||||
NOTICE_LOG(BOOT, "Booting %s", _StartupPara.m_strFilename.c_str());
|
NOTICE_LOG(BOOT, "Booting %s", _StartupPara.m_strFilename.c_str());
|
||||||
|
|
||||||
g_symbolDB.Clear();
|
g_symbolDB.Clear();
|
||||||
VideoInterface::Preset(_StartupPara.bNTSC);
|
|
||||||
|
// PAL Wii uses NTSC framerate and linecount in 60Hz modes
|
||||||
|
const bool bPAL60 = _StartupPara.bWii && SConfig::GetInstance().m_SYSCONF->GetData<u8>("IPL.E60");
|
||||||
|
VideoInterface::Preset(_StartupPara.bNTSC || bPAL60);
|
||||||
|
|
||||||
switch (_StartupPara.m_BootType)
|
switch (_StartupPara.m_BootType)
|
||||||
{
|
{
|
||||||
// GCM and Wii
|
// GCM and Wii
|
||||||
|
Loading…
x
Reference in New Issue
Block a user