diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-17 10:39:06 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-17 10:39:06 -0400 |
commit | f8c17542385e9004bd1730f1f01c97a60fe0e1a6 (patch) | |
tree | 32b9f36124669fd6ae85dba6969d0eeb7d2f6392 /engine/rtc | |
parent | 97c1f9dd27250f4bea46e8a3367f25127f119781 (diff) |
Harmonize engine/{gfx, items, link, math} with pokecrystal
Diffstat (limited to 'engine/rtc')
-rw-r--r-- | engine/rtc/print_hours_mins.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/rtc/print_hours_mins.asm b/engine/rtc/print_hours_mins.asm index faa69756..41ad2009 100644 --- a/engine/rtc/print_hours_mins.asm +++ b/engine/rtc/print_hours_mins.asm @@ -4,7 +4,7 @@ Unreferenced_Function1c0a0d: ld c, a push bc push de - ld hl, sp+$2 + ld hl, sp+2 ld d, h ld e, l pop hl @@ -30,7 +30,7 @@ PrintHoursMins: ld b, a ; Crazy stuff happening with the stack push bc - ld hl, sp+$1 + ld hl, sp+1 push de push hl pop de @@ -42,7 +42,7 @@ PrintHoursMins: inc hl ld d, h ld e, l - ld hl, sp+$0 + ld hl, sp+0 push de push hl pop de |