A few missed hardcoded decimal points

This commit is contained in:
dannye 2016-07-18 01:48:34 -05:00
parent 7c01509b6b
commit 25c27785aa
3 changed files with 5 additions and 5 deletions

View file

@ -366,10 +366,10 @@ PrintAlphabet:
jp Delay3 jp Delay3
LowerCaseAlphabet: LowerCaseAlphabet:
db "abcdefghijklmnopqrstuvwxyz ×():;[]",$e1,$e2,"-?!♂♀/",$f2,",¥UPPER CASE@" db "abcdefghijklmnopqrstuvwxyz ×():;[]",$e1,$e2,"-?!♂♀/,¥UPPER CASE@"
UpperCaseAlphabet: UpperCaseAlphabet:
db "ABCDEFGHIJKLMNOPQRSTUVWXYZ ×():;[]",$e1,$e2,"-?!♂♀/",$f2,",¥lower case@" db "ABCDEFGHIJKLMNOPQRSTUVWXYZ ×():;[]",$e1,$e2,"-?!♂♀/,¥lower case@"
PrintNicknameAndUnderscores: PrintNicknameAndUnderscores:
call CalcStringLength call CalcStringLength

View file

@ -478,7 +478,7 @@ ShowPokedexDataInternal:
coord hl, 2, 8 coord hl, 2, 8
ld a, "№" ld a, "№"
ld [hli],a ld [hli],a
ld a,$f2 ld a,"⠄"
ld [hli],a ld [hli],a
ld de,wd11e ld de,wd11e
lb bc, LEADING_ZEROES | 1, 3 lb bc, LEADING_ZEROES | 1, 3
@ -558,7 +558,7 @@ ShowPokedexDataInternal:
inc hl inc hl
ld a,[hli] ld a,[hli]
ld [hld],a ; make space for the decimal point by moving the last digit forward one tile 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 pop af
ld [hDexWeight + 1],a ; restore original value of [hDexWeight + 1] ld [hDexWeight + 1],a ; restore original value of [hDexWeight + 1]
pop af pop af

View file

@ -110,7 +110,7 @@ StatusScreen:
call DrawLineBox ; Draws the box around name, HP and status call DrawLineBox ; Draws the box around name, HP and status
ld de, -6 ld de, -6
add hl, de add hl, de
ld [hl], $f2 ; . after No ("." is a different one) ld [hl], "⠄" ; . after No ("." is a different one)
dec hl dec hl
ld [hl], "№" ld [hl], "№"
coord hl, 19, 9 coord hl, 19, 9