diff options
Diffstat (limited to 'mobile')
-rw-r--r-- | mobile/mobile_40.asm | 4 | ||||
-rw-r--r-- | mobile/mobile_46.asm | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mobile/mobile_40.asm b/mobile/mobile_40.asm index c342388dd..2d01435ea 100644 --- a/mobile/mobile_40.asm +++ b/mobile/mobile_40.asm @@ -79,7 +79,7 @@ EnableMobile: call DoubleSpeed xor a ldh [rIF], a - ld a, 1 << VBLANK | 1 << LCD_STAT | 1 << TIMER | 1 << SERIAL + ld a, IE_DEFAULT ldh [rIE], a xor a ldh [hMapAnims], a @@ -162,7 +162,7 @@ Function1000fa: xor a ldh [rIF], a ldh a, [rIE] - and $13 + and $1f ^ (1 << SERIAL | 1 << TIMER) ldh [rIE], a xor a ldh [hMobileReceive], a diff --git a/mobile/mobile_46.asm b/mobile/mobile_46.asm index 75ed452b9..78b728e46 100644 --- a/mobile/mobile_46.asm +++ b/mobile/mobile_46.asm @@ -469,7 +469,7 @@ BattleTowerRoomMenu_InitRAM: ld a, [hl] ld [wcd7f], a set 1, [hl] - ld a, $f + ld a, (1 << SERIAL) | (1 << TIMER) | (1 << LCD_STAT) | (1 << VBLANK) ldh [rIE], a ld a, $1 ldh [hMobileReceive], a |