It's supposed to be OR, not AND!
This commit is contained in:
parent
834a487388
commit
e201d44aa9
|
@ -54,7 +54,7 @@ SMDH::GameRegion SMDH::GetRegion() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr u32 taiwan_and_china =
|
constexpr u32 taiwan_and_china =
|
||||||
(1 << static_cast<u32>(GameRegion::Taiwan)) & (1 << static_cast<u32>(GameRegion::China));
|
(1 << static_cast<u32>(GameRegion::Taiwan)) | (1 << static_cast<u32>(GameRegion::China));
|
||||||
if (region_lockout == taiwan_and_china) {
|
if (region_lockout == taiwan_and_china) {
|
||||||
return GameRegion::Taiwan;
|
return GameRegion::Taiwan;
|
||||||
} // hack to fix TWN games that support CHN consoles
|
} // hack to fix TWN games that support CHN consoles
|
||||||
|
|
Reference in New Issue