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 /home/game_time.asm | |
parent | 682548493be7f20b8b7fb26ab0c367c3c24430ed (diff) |
wGameTimerPause bit flag constants
Diffstat (limited to 'home/game_time.asm')
-rw-r--r-- | home/game_time.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/game_time.asm b/home/game_time.asm index 36dcaa282..14edda452 100644 --- a/home/game_time.asm +++ b/home/game_time.asm @@ -39,7 +39,7 @@ UpdateGameTimer:: ; 20ad ; Is the timer paused? ld hl, wGameTimerPause - bit 0, [hl] + bit GAMETIMERPAUSE_TIMER_PAUSED_F, [hl] ret z ; Is the timer already capped? |