mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-18 03:11:11 +00:00
Merge 3eea3a90b5 into 3564a256bf
This commit is contained in:
commit
acb687d9e3
@ -67,7 +67,7 @@ Country VolumeDisc::GetCountry(const Partition& partition) const
|
||||
{
|
||||
const BootID* boot_id = static_cast<const VolumeGC*>(this)->GetTriforceBootID();
|
||||
|
||||
switch (boot_id->region_flags)
|
||||
switch (boot_id->region_flags & 0x000000FF)
|
||||
{
|
||||
default:
|
||||
case 0x02: // JAPAN
|
||||
|
||||
@ -92,7 +92,7 @@ Region VolumeGC::GetRegion() const
|
||||
{
|
||||
if (m_is_triforce)
|
||||
{
|
||||
switch (m_triforce_header.region_flags)
|
||||
switch (m_triforce_header.region_flags & 0x000000FF)
|
||||
{
|
||||
default:
|
||||
case 0x02: // JAPAN
|
||||
|
||||
Loading…
Reference in New Issue
Block a user