diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2016-01-03 14:17:10 -0500 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2016-01-03 14:18:33 -0500 |
commit | 28dc5686b05477e13a9cc078975315140bee9800 (patch) | |
tree | f242eec26b51c08505ecb5b8d39bfe5eaac14cd5 /engine/menu/start_sub_menus.asm | |
parent | 1a5a108bdf6904423bfa80cc7bcb5582331740cb (diff) |
Fix game time labels
Diffstat (limited to 'engine/menu/start_sub_menus.asm')
-rwxr-xr-x | engine/menu/start_sub_menus.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/menu/start_sub_menus.asm b/engine/menu/start_sub_menus.asm index f7bb5a46..34c21da0 100755 --- a/engine/menu/start_sub_menus.asm +++ b/engine/menu/start_sub_menus.asm @@ -601,12 +601,12 @@ DrawTrainerInfo: ; 1349a (4:749a) ld c,$e3 call PrintBCDNumber coord hl, 9, 6 - ld de,wPlayTimeHours + 1 ; hours + ld de,wPlayTimeHours ; hours lb bc, LEFT_ALIGN | 1, 3 call PrintNumber ld [hl],$d6 ; colon tile ID inc hl - ld de,wPlayTimeMinutes + 1 ; minutes + ld de,wPlayTimeMinutes ; minutes lb bc, LEADING_ZEROES | 1, 2 jp PrintNumber |