diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-17 10:39:17 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-17 10:39:17 -0400 |
commit | 8019db3ea98ee60d3e6675431e07819b83daf04c (patch) | |
tree | fcaebfe3713ea04f56725127a702456d16417f22 /engine/pokedex | |
parent | f2550fc3c208508aaba3a9c2f26dcd12d81c6bc5 (diff) |
Harmonize engine/{gfx, items, link, math} with pokegold
Diffstat (limited to 'engine/pokedex')
-rw-r--r-- | engine/pokedex/pokedex_2.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/pokedex/pokedex_2.asm b/engine/pokedex/pokedex_2.asm index 56b191a08..2757d26fc 100644 --- a/engine/pokedex/pokedex_2.asm +++ b/engine/pokedex/pokedex_2.asm @@ -125,7 +125,7 @@ DisplayDexEntry: push hl push de ; Print the height, with two of the four digits in front of the decimal point - ld hl, sp+$0 + ld hl, sp+0 ld d, h ld e, l hlcoord 12, 7 @@ -151,7 +151,7 @@ DisplayDexEntry: jr z, .skip_weight push de ; Print the weight, with four of the five digits in front of the decimal point - ld hl, sp+$0 + ld hl, sp+0 ld d, h ld e, l hlcoord 11, 9 |