diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2015-11-10 16:53:37 -0500 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2015-11-10 16:53:37 -0500 |
commit | d13fb46d405eb1cbc78c4f7c8823cfce5cfdbfab (patch) | |
tree | cc41006e4160aac7de10704bff7eaea30dc81591 /engine/clock_reset.asm | |
parent | ba05bfeafec51b183986ecaacd22c718ec21f56a (diff) |
enum macros/move_anim.asm, resolve battle/anims.asm function labels
Diffstat (limited to 'engine/clock_reset.asm')
-rwxr-xr-x | engine/clock_reset.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/clock_reset.asm b/engine/clock_reset.asm index eedcae836..3d2ca2708 100755 --- a/engine/clock_reset.asm +++ b/engine/clock_reset.asm @@ -72,9 +72,9 @@ RestartClock: ; 20021 (8:4021) call UpdateTime call GetWeekday ld [Buffer4], a - ld a, [hHours] ; $ff00+$94 + ld a, [hHours] ld [Buffer5], a - ld a, [hMinutes] ; $ff00+$96 + ld a, [hMinutes] ld [Buffer6], a .loop @@ -223,7 +223,7 @@ RestartClock: ; 20021 (8:4021) .unreferenced: ; 20160 ld a, [Buffer3] ld b, a - call GetTileCoord + call Coord2Tile ret ; 20168 @@ -233,7 +233,7 @@ RestartClock: ; 20021 (8:4021) ld a, [Buffer3] dec a ld b, a - call GetTileCoord + call Coord2Tile pop de ld [hl], d ld bc, 2 * SCREEN_WIDTH |