diff options
author | IIMarckus <iimarckus@gmail.com> | 2011-12-21 14:20:45 -0700 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2011-12-21 14:20:45 -0700 |
commit | d637d149ccc272f419cfcda9564e07e7141979d4 (patch) | |
tree | 9b82f8c7fa66d1a60a5ef718e09b82db7c78bdc2 | |
parent | eed50479223ed604041ff6e281ce7a46564e2a0a (diff) |
Add a character for the numero sign.
Unicode has a character for just about anything…
hg-commit-id: 55e8f69345df
-rw-r--r-- | pokered.asm | 2 | ||||
-rw-r--r-- | textpre.awk | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/pokered.asm b/pokered.asm index 5eee9520..f0c7df1a 100644 --- a/pokered.asm +++ b/pokered.asm @@ -10718,7 +10718,7 @@ OTString67E5: ; 67E5 db "──",$74,$F2,$4E db $4E db "OT/",$4E - db $73,$74,$F2,"@" + db $73,"№",$F2,"@" SECTION "bank11",DATA,BANK[$11] INCBIN "baserom.gbc",$44000,$4000 diff --git a/textpre.awk b/textpre.awk index a10f5f12..d86fb14d 100644 --- a/textpre.awk +++ b/textpre.awk @@ -155,6 +155,8 @@ char["│"] = "$7C" char["└"] = "$7D" char["┘"] = "$7E" +char["№"] = "$74" + char[" "] = "$7F" char["A"] = "$80" char["B"] = "$81" |