mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 22:05:38 +00:00
CDROM: Fix region check
This commit is contained in:
parent
53fffb1de2
commit
7270531c3d
|
@ -680,6 +680,9 @@ bool CDROM::DoesMediaRegionMatchConsole()
|
|||
if (!g_settings.cdrom_region_check)
|
||||
return true;
|
||||
|
||||
if (s_disc_region == DiscRegion::Other)
|
||||
return false;
|
||||
|
||||
return System::GetRegion() == System::GetConsoleRegionForDiscRegion(s_disc_region);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue