diff options
-rw-r--r-- | main.asm | 4 | ||||
-rw-r--r-- | textpre.py | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -6134,7 +6134,7 @@ DisplayChooseQuantityMenu: ; 2D57 ret InitialQuantityText: ; 2E30 - db $f1,"01@" + db "×01@" SpacesBetweenQuantityAndPriceText: ; 2E34 db " @" @@ -6299,7 +6299,7 @@ PrintListMenuEntries: ; 2E5A push hl ld bc,20 + 8 ; 1 row down and 8 columns right add hl,bc - ld a,$f1 + ld a,"×" ldi [hl],a ld a,[$d11e] push af @@ -242,6 +242,7 @@ chars["!"] = "$E7" chars["."] = "$E8" chars["♂"] = "$EF" chars["¥"] = "$F0" +chars["×"] = "$F1" chars["/"] = "$F3" chars[","] = "$F4" chars["♀"] = "$F5" |