mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-16 19:05:39 +00:00
HostInterface: Check all console regions when looking for any BIOS
This commit is contained in:
parent
a845b2c5f8
commit
4db29f9399
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue