diff options
| author | mid-kid <esteve.varela@gmail.com> | 2020-08-03 22:56:33 +0200 |
|---|---|---|
| committer | mid-kid <esteve.varela@gmail.com> | 2020-08-04 01:18:52 +0200 |
| commit | 908b2565faadc7efbfce7d9afb2bbb89188ae2df (patch) | |
| tree | 3c571de6b4106c3cd51fc7562b1185d4b2f44fb7 /home | |
| parent | 6d7c51db4f95d97eca0f831cb45565b644fcece5 (diff) | |
TX_NUM -> TX_DECIMAL
Diffstat (limited to 'home')
| -rw-r--r-- | home/text.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/text.asm b/home/text.asm index f21b940c..f7ce3395 100644 --- a/home/text.asm +++ b/home/text.asm @@ -612,7 +612,7 @@ TextCommands:: dw TextCommand_PROMPT_BUTTON ; TX_PROMPT_BUTTON dw TextCommand_SCROLL ; TX_SCROLL dw TextCommand_START_ASM ; TX_START_ASM - dw TextCommand_NUM ; TX_NUM + dw TextCommand_DECIMAL ; TX_DECIMAL dw TextCommand_PAUSE ; TX_PAUSE dw TextCommand_SOUND ; TX_SOUND_DEX_FANFARE_50_79 dw TextCommand_DOTS ; TX_DOTS @@ -756,8 +756,8 @@ TextCommand_START_ASM:: ; run assembly code jp hl -TextCommand_NUM:: -; print a number +TextCommand_DECIMAL:: +; print a decimal number ld a, [hli] ld e, a ld a, [hli] |
