Merge pull request #2981 from HeatXD/patch-1

core / system: Disc-Region Fix For Netplay
This commit is contained in:
Connor McLaughlin 2023-05-24 20:34:13 +10:00 committed by GitHub
commit 671f856d8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1173,9 +1173,9 @@ bool System::BootSystem(SystemBootParameters parameters)
return false;
}
disc_region = GetRegionForImage(disc.get());
if (s_region == ConsoleRegion::Auto)
{
disc_region = GetRegionForImage(disc.get());
if (disc_region != DiscRegion::Other)
{
s_region = GetConsoleRegionForDiscRegion(disc_region);