Fix a typo

This commit is contained in:
qeeg 2020-08-31 16:37:42 -05:00
parent 02d51620e3
commit 9bfaf8682d
1 changed files with 1 additions and 1 deletions

View File

@ -3745,7 +3745,7 @@ void ARM7IOWrite8(u32 addr, u8 val)
return; return;
case 0x04000301: case 0x04000301:
val & 0xC0; val &= 0xC0;
if (val == 0x40) printf("!! GBA MODE NOT SUPPORTED\n"); if (val == 0x40) printf("!! GBA MODE NOT SUPPORTED\n");
else if (val == 0x80) ARM7->Halt(1); else if (val == 0x80) ARM7->Halt(1);
else if (val == 0xC0) EnterSleepMode(); else if (val == 0xC0) EnterSleepMode();