diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-23 12:40:29 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-23 12:40:29 -0500 |
commit | c5cc23a35fa2c544e3fa8f5101878ba2127ca83e (patch) | |
tree | a4e64836ff970e4338a46d66c8b4c3c48e29bc01 /mobile | |
parent | 682548493be7f20b8b7fb26ab0c367c3c24430ed (diff) |
wGameTimerPause bit flag constants
Diffstat (limited to 'mobile')
-rw-r--r-- | mobile/mobile_22.asm | 6 | ||||
-rw-r--r-- | mobile/mobile_40.asm | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/mobile/mobile_22.asm b/mobile/mobile_22.asm index e96fd1e8f..779d8964b 100644 --- a/mobile/mobile_22.asm +++ b/mobile/mobile_22.asm @@ -26,17 +26,17 @@ OpenSRAMBank4: ; 89160 Function89168: ; 89168 (22:5168) ld hl, wGameTimerPause - set 7, [hl] + set GAMETIMERPAUSE_MOBILE_7_F, [hl] ret Function8916e: ; 8916e (22:516e) ld hl, wGameTimerPause - res 7, [hl] + res GAMETIMERPAUSE_MOBILE_7_F, [hl] ret Function89174: ; 89174 (22:5174) ld hl, wGameTimerPause - bit 7, [hl] + bit GAMETIMERPAUSE_MOBILE_7_F, [hl] ret Function8917a: ; 8917a (22:517a) diff --git a/mobile/mobile_40.asm b/mobile/mobile_40.asm index 0a04453a0..3dc3f2682 100644 --- a/mobile/mobile_40.asm +++ b/mobile/mobile_40.asm @@ -2812,7 +2812,7 @@ Special_Function1011f1: ; 1011f1 ld hl, wdc41 res 4, [hl] ld hl, wGameTimerPause - bit 7, [hl] + bit GAMETIMERPAUSE_MOBILE_7_F, [hl] jr z, .skip ld hl, wdc41 set 4, [hl] @@ -4703,7 +4703,7 @@ Function101e98: ; 101e98 farcall Function8adb3 ret c ld hl, wGameTimerPause - set 7, [hl] + set GAMETIMERPAUSE_MOBILE_7_F, [hl] ld hl, wdc41 set 4, [hl] ret @@ -4711,7 +4711,7 @@ Function101e98: ; 101e98 Function101ead: ; 101ead ld hl, wGameTimerPause - bit 7, [hl] + bit GAMETIMERPAUSE_MOBILE_7_F, [hl] jr nz, .asm_101ec8 ld hl, wdc41 bit 2, [hl] |