diff options
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 |