mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-04-10 19:15:14 +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()
|
bool HostInterface::HasAnyBIOSImages()
|
||||||
{
|
{
|
||||||
const std::string dir = GetBIOSDirectory();
|
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)
|
bool HostInterface::LoadState(const char* filename)
|
||||||
|
|
Loading…
Reference in a new issue