diff options
Diffstat (limited to 'home/game_time.asm')
-rw-r--r-- | home/game_time.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/game_time.asm b/home/game_time.asm index 7b958c897..5a6732414 100644 --- a/home/game_time.asm +++ b/home/game_time.asm @@ -22,7 +22,7 @@ GameTimer:: ldh [rSVBK], a ret -.Function +.Function: ; Increment the game timer by one frame. ; The game timer is capped at 999:59:59.00. @@ -32,8 +32,8 @@ GameTimer:: ret nz ; Is the timer paused? - ld hl, wGameTimerPause - bit GAMETIMERPAUSE_TIMER_PAUSED_F, [hl] + ld hl, wGameTimerPaused + bit GAME_TIMER_PAUSED_F, [hl] ret z ; Is the timer already capped? |