From 77fe8839016f2a75ee4cca6525d2f408a6368d63 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 16 Nov 2019 20:13:33 +1000 Subject: [PATCH] System: Default to NTSC region for BIOS boot if auto --- src/core/system.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/core/system.cpp b/src/core/system.cpp index 226e6387b..22d0b08e6 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -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 = m_host_interface->GetBIOSImage(m_region);