diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-07-18 01:48:34 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-07-18 01:48:34 -0500 |
commit | 25c27785aa83a12330ea58e1e35b2fec90dd84f4 (patch) | |
tree | 1485e7e8c9bd34d7c34f03c9035a8ec56d943cee /engine/menu/pokedex.asm | |
parent | 7c01509b6b69b4dc33f5d739589d50f26ffd65b0 (diff) |
A few missed hardcoded decimal points
Diffstat (limited to 'engine/menu/pokedex.asm')
-rwxr-xr-x | engine/menu/pokedex.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/menu/pokedex.asm b/engine/menu/pokedex.asm index e689b713..2da3a0f6 100755 --- a/engine/menu/pokedex.asm +++ b/engine/menu/pokedex.asm @@ -478,7 +478,7 @@ ShowPokedexDataInternal: coord hl, 2, 8 ld a, "№" ld [hli],a - ld a,$f2 + ld a,"⠄" ld [hli],a ld de,wd11e lb bc, LEADING_ZEROES | 1, 3 @@ -558,7 +558,7 @@ ShowPokedexDataInternal: inc hl ld a,[hli] ld [hld],a ; make space for the decimal point by moving the last digit forward one tile - ld [hl],$f2 ; decimal point tile + ld [hl],"⠄" ; decimal point tile pop af ld [hDexWeight + 1],a ; restore original value of [hDexWeight + 1] pop af |