Add "×" in text.

hg-commit-id: 78daeb956407
This commit is contained in:
IIMarckus 2012-03-05 00:00:55 -07:00
parent 75b2316ddc
commit 0d4138441c
2 changed files with 3 additions and 2 deletions

View file

@ -6134,7 +6134,7 @@ DisplayChooseQuantityMenu: ; 2D57
ret ret
InitialQuantityText: ; 2E30 InitialQuantityText: ; 2E30
db $f1,"01@" db "×01@"
SpacesBetweenQuantityAndPriceText: ; 2E34 SpacesBetweenQuantityAndPriceText: ; 2E34
db " @" db " @"
@ -6299,7 +6299,7 @@ PrintListMenuEntries: ; 2E5A
push hl push hl
ld bc,20 + 8 ; 1 row down and 8 columns right ld bc,20 + 8 ; 1 row down and 8 columns right
add hl,bc add hl,bc
ld a,$f1 ld a,"×"
ldi [hl],a ldi [hl],a
ld a,[$d11e] ld a,[$d11e]
push af push af

View file

@ -242,6 +242,7 @@ chars["!"] = "$E7"
chars["."] = "$E8" chars["."] = "$E8"
chars[""] = "$EF" chars[""] = "$EF"
chars["¥"] = "$F0" chars["¥"] = "$F0"
chars["×"] = "$F1"
chars["/"] = "$F3" chars["/"] = "$F3"
chars[","] = "$F4" chars[","] = "$F4"
chars[""] = "$F5" chars[""] = "$F5"