diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-08-18 16:35:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 16:35:15 -0400 |
commit | 0b31d12daceb9f431387951ee275e6147285cffd (patch) | |
tree | b91ae6167e4afa49cb70b1a163a6344f7e924a2c /home/text.asm | |
parent | b577e4e179711e96f8e059b42c7115e7103a4a69 (diff) | |
parent | 315d6c665ea0ee4e103f6d8b9dbfb531659ae381 (diff) |
Merge pull request #756 from mid-kid/master
Rub a dub dub, thanks for the grub
Diffstat (limited to 'home/text.asm')
-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 f4130e337..d9236a7a7 100644 --- a/home/text.asm +++ b/home/text.asm @@ -698,7 +698,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 @@ -851,8 +851,8 @@ TextCommand_START_ASM:: ld [hl], a ret -TextCommand_NUM:: -; print a number +TextCommand_DECIMAL:: +; print a decimal number ld a, [hli] ld e, a ld a, [hli] |