core / system: Disc-Region Fix For Netplay

Fixes an issue which is only really valid for netplay since can start from an non-auto region sinc eit pulls it from the host.
pull/2981/head
Jamie Meyer 2 years ago committed by GitHub
parent ffb832eed3
commit 36c4345019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save