Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Mar 1, 2018
1 parent 174f4e2 commit 378ae2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bootloader/source/main.arm7.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,10 @@ void loadRomIntoRam(aFile file) {
u32 ROMinRAM = 0;

// ExceptionHandler2 (red screen) blacklist
if((ROM_TID & 0x00FFFFFF) != 0x4D5341 // SM64DS
&& (ROM_TID & 0x00FFFFFF) != 0x534D53 // SMSW
&& (ROM_TID & 0x00FFFFFF) != 0x443241 // NSMB
&& (ROM_TID & 0x00FFFFFF) != 0x4D4441) // AC:WW
if((ROM_TID & 0x00FFFFFF) == 0x4D5341 // SM64DS
|| (ROM_TID & 0x00FFFFFF) == 0x534D53 // SMSW
|| (ROM_TID & 0x00FFFFFF) == 0x443241 // NSMB
|| (ROM_TID & 0x00FFFFFF) == 0x4D4441) // AC:WW
{
enableExceptionHandler = false;
}
Expand Down

0 comments on commit 378ae2e

Please sign in to comment.