mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
Fix whitespace
This commit is contained in:
parent
17ba67c8c9
commit
3f49d9920c
@ -52,12 +52,12 @@ SMDH::GameRegion SMDH::GetRegion() const {
|
|||||||
if (region_lockout == 0x7fffffff) {
|
if (region_lockout == 0x7fffffff) {
|
||||||
return GameRegion::RegionFree;
|
return GameRegion::RegionFree;
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr u32 taiwan_and_china = (1 << GameRegion::Taiwan) & (1 << GameRegion::China);
|
constexpr u32 taiwan_and_china = (1 << GameRegion::Taiwan) & (1 << 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
|
||||||
|
|
||||||
constexpr u32 REGION_COUNT = 7;
|
constexpr u32 REGION_COUNT = 7;
|
||||||
u32 region = 0;
|
u32 region = 0;
|
||||||
for (; region < REGION_COUNT; ++region) {
|
for (; region < REGION_COUNT; ++region) {
|
||||||
|
Loading…
Reference in New Issue
Block a user