diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-09 12:24:50 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-09 12:57:23 -0500 |
commit | 6a41d4f63e8fb9f14e1c0a4a9ace062dac747432 (patch) | |
tree | f522ef78035e375c90ce8748bbbf69284442ef45 /engine/printnum.asm | |
parent | 512863989fb2cb17bcca2f27a61fe3fa8f567b9a (diff) |
Define more charmap characters and use them in place of hard-coded numbers
Diffstat (limited to 'engine/printnum.asm')
-rwxr-xr-x | engine/printnum.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/printnum.asm b/engine/printnum.asm index 4ef7721c8..c68776d5f 100755 --- a/engine/printnum.asm +++ b/engine/printnum.asm @@ -275,7 +275,7 @@ _PrintNum:: ; c4c7 dec e ret nz inc hl - ld [hl], "·" + ld [hl], "<PERIOD>" ret .PrintLeadingZero: ; c644 |