HostInterface: Check all console regions when looking for any BIOS

This commit is contained in:
Albert Liu 2020-12-12 22:25:44 -08:00
parent a845b2c5f8
commit 4db29f9399

View file

@ -374,7 +374,7 @@ HostInterface::FindBIOSImagesInDirectory(const char* directory)
bool HostInterface::HasAnyBIOSImages()
{
const std::string dir = GetBIOSDirectory();
return (FindBIOSImageInDirectory(ConsoleRegion::NTSC_U, dir.c_str()).has_value());
return (FindBIOSImageInDirectory(ConsoleRegion::Auto, dir.c_str()).has_value());
}
bool HostInterface::LoadState(const char* filename)