mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-21 17:49:58 -05:00
Merge 3eea3a90b5 into 726f5f8897
This commit is contained in:
commit
53ed50742e
|
|
@ -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