diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2019-04-13 11:50:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-13 11:50:16 -0400 |
commit | 1ada06f576ebd25bfd00cfdc9d197d93946ebd5b (patch) | |
tree | 5e6e4603ccc68538fbf242cb463becda5b71ea75 /home/print_text.asm | |
parent | 31dc62ec5d1a8028cb1cb30ea0d3fa8eb553145a (diff) | |
parent | 3e78e5b2b604568b13a37e4603dbd798373b9805 (diff) |
Merge pull request #622 from mid-kid/master
TextBox -> Textbox
Diffstat (limited to 'home/print_text.asm')
-rw-r--r-- | home/print_text.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/print_text.asm b/home/print_text.asm index 98f50c7c1..b7f76ce64 100644 --- a/home/print_text.asm +++ b/home/print_text.asm @@ -6,15 +6,15 @@ PrintLetterDelay:: ; mid: 3 frames ; slow: 5 frames -; wTextBoxFlags[!0] and A or B override text speed with a one-frame delay. -; wOptions[4] and wTextBoxFlags[!1] disable the delay. +; wTextboxFlags[!0] and A or B override text speed with a one-frame delay. +; wOptions[4] and wTextboxFlags[!1] disable the delay. ld a, [wOptions] bit NO_TEXT_SCROLL, a ret nz ; non-scrolling text? - ld a, [wTextBoxFlags] + ld a, [wTextboxFlags] bit NO_TEXT_DELAY_F, a ret z @@ -31,7 +31,7 @@ PrintLetterDelay:: ld [hl], a ; force fast scroll? - ld a, [wTextBoxFlags] + ld a, [wTextboxFlags] bit FAST_TEXT_DELAY_F, a jr z, .fast |