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.
This commit is contained in:
parent
ffb832eed3
commit
36c4345019
|
@ -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…
Reference in New Issue