Skip to content

Commit

Permalink
Use hex byte instead of bit for AUS supported language bitmask
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Jan 25, 2024
1 parent d082eb7 commit a5e782a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion retail/bootloader/source/arm7/main.arm7.c
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ static void setMemoryAddress(const tNDSHeader* ndsHeader, const module_params_t*
} else if (curRegion == 2) {
*(u32*)(0x02FFFD68) = 0x3E; // EUR
} else if (curRegion == 3) {
*(u32*)(0x02FFFD68) = BIT(1); // AUS
*(u32*)(0x02FFFD68) = 0x02; // AUS
} else if (curRegion == 4) {
*(u32*)(0x02FFFD68) = 0x40; // CHN
} else if (curRegion == 5) {
Expand Down
2 changes: 1 addition & 1 deletion retail/bootloaderi/source/arm7/main.arm7.c
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ static void setMemoryAddress(const tNDSHeader* ndsHeader, const module_params_t*
} else if (curRegion == 2) {
*(u32*)(0x02FFFD68) = 0x3E; // EUR
} else if (curRegion == 3) {
*(u32*)(0x02FFFD68) = BIT(1); // AUS
*(u32*)(0x02FFFD68) = 0x02; // AUS
} else if (curRegion == 4) {
*(u32*)(0x02FFFD68) = 0x40; // CHN
} else if (curRegion == 5) {
Expand Down

0 comments on commit a5e782a

Please sign in to comment.