diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2012-02-14 12:01:49 -0600 |
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2012-02-14 12:01:49 -0600 |
| commit | 51cb5bca9791606385b1e1254fc180a342f91819 (patch) | |
| tree | 2e8ac00947c8f02f70a904c6d49158b3b0e3d8b7 /textpre.awk | |
| parent | disasm of options menu (diff) | |
| download | pokeyellow-51cb5bca9791606385b1e1254fc180a342f91819.tar.gz pokeyellow-51cb5bca9791606385b1e1254fc180a342f91819.tar.xz pokeyellow-51cb5bca9791606385b1e1254fc180a342f91819.zip | |
fix syntax errors in main.asm
hg-commit-id: 8bd80db848b4
Diffstat (limited to 'textpre.awk')
| -rw-r--r-- | textpre.awk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/textpre.awk b/textpre.awk index cbddd8ff..6c1eeac0 100644 --- a/textpre.awk +++ b/textpre.awk @@ -163,6 +163,9 @@ char["│"] = "$7C" char["└"] = "$7D" char["┘"] = "$7E" +char["{"] = "" +char["}"] = "" + char["№"] = "$74" char[" "] = "$7F" @@ -297,7 +300,7 @@ else { print char[c] if (length(f)) - print "," + print ", " } } |
