summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home.asm b/home.asm
index 7893acaa5..4c59d1d1a 100644
--- a/home.asm
+++ b/home.asm
@@ -332,7 +332,7 @@ PrintLetterDelay:: ; 313d
jr .updatedelay
.fast
- ld a, 1
+ ld a, TEXT_DELAY_FAST
.updatedelay
ld [TextDelayFrames], a
@@ -347,11 +347,11 @@ PrintLetterDelay:: ; 313d
; Wait one frame if holding A or B.
ld a, [hJoyDown]
- bit 0, a ; A_BUTTON
+ bit A_BUTTON_F, a
jr z, .checkb
jr .delay
.checkb
- bit 1, a ; B_BUTTON
+ bit B_BUTTON_F, a
jr z, .wait
.delay