From 4db29f939934341db32e2cd591195048df4e46ee Mon Sep 17 00:00:00 2001 From: Albert Liu <45282415+ggrtk@users.noreply.github.com> Date: Sat, 12 Dec 2020 22:25:44 -0800 Subject: [PATCH] HostInterface: Check all console regions when looking for any BIOS --- src/core/host_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index ec3c6e86d..4092ecc19 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -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)