mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-03-06 14:27:44 +00:00
System: Default to NTSC region for BIOS boot if auto
This commit is contained in:
parent
b57f1d4a60
commit
77fe883901
|
@ -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.
|
// Load BIOS image.
|
||||||
std::optional<BIOS::Image> bios_image = m_host_interface->GetBIOSImage(m_region);
|
std::optional<BIOS::Image> bios_image = m_host_interface->GetBIOSImage(m_region);
|
||||||
|
|
Loading…
Reference in a new issue