System: Default to NTSC region for BIOS boot if auto

This commit is contained in:
Connor McLaughlin 2019-11-16 20:13:33 +10:00
parent b57f1d4a60
commit 77fe883901
1 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,12 @@ bool System::Boot(const char* filename)
}
}
}
else
{
// Default to NTSC for BIOS boot.
if (m_region == ConsoleRegion::Auto)
m_region = ConsoleRegion::NTSC_U;
}
// Load BIOS image.
std::optional<BIOS::Image> bios_image = m_host_interface->GetBIOSImage(m_region);