summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordannye <corrnondacqb@yahoo.com>2016-07-18 01:48:34 -0500
committerdannye <corrnondacqb@yahoo.com>2016-07-18 01:48:34 -0500
commit25c27785aa83a12330ea58e1e35b2fec90dd84f4 (patch)
tree1485e7e8c9bd34d7c34f03c9035a8ec56d943cee
parent7c01509b6b69b4dc33f5d739589d50f26ffd65b0 (diff)
A few missed hardcoded decimal points
-rwxr-xr-xengine/menu/naming_screen.asm4
-rwxr-xr-xengine/menu/pokedex.asm4
-rwxr-xr-xengine/menu/status_screen.asm2
3 files changed, 5 insertions, 5 deletions
diff --git a/engine/menu/naming_screen.asm b/engine/menu/naming_screen.asm
index 758a2d8d..2628da48 100755
--- a/engine/menu/naming_screen.asm
+++ b/engine/menu/naming_screen.asm
@@ -366,10 +366,10 @@ PrintAlphabet:
jp Delay3
LowerCaseAlphabet:
- db "abcdefghijklmnopqrstuvwxyz ×():;[]",$e1,$e2,"-?!♂♀/",$f2,",¥UPPER CASE@"
+ db "abcdefghijklmnopqrstuvwxyz ×():;[]",$e1,$e2,"-?!♂♀/⠄,¥UPPER CASE@"
UpperCaseAlphabet:
- db "ABCDEFGHIJKLMNOPQRSTUVWXYZ ×():;[]",$e1,$e2,"-?!♂♀/",$f2,",¥lower case@"
+ db "ABCDEFGHIJKLMNOPQRSTUVWXYZ ×():;[]",$e1,$e2,"-?!♂♀/⠄,¥lower case@"
PrintNicknameAndUnderscores:
call CalcStringLength
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
diff --git a/engine/menu/status_screen.asm b/engine/menu/status_screen.asm
index d37648a6..ef94f13c 100755
--- a/engine/menu/status_screen.asm
+++ b/engine/menu/status_screen.asm
@@ -110,7 +110,7 @@ StatusScreen:
call DrawLineBox ; Draws the box around name, HP and status
ld de, -6
add hl, de
- ld [hl], $f2 ; . after No ("." is a different one)
+ ld [hl], "⠄" ; . after No ("." is a different one)
dec hl
ld [hl], "№"
coord hl, 19, 9