diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-29 13:29:24 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-29 13:29:24 -0500 |
commit | ab823e2b5473f840c038ea6f01ad43dadbddcb08 (patch) | |
tree | e2ee18b47d54a50d3447766e44810ecd66dd50f7 | |
parent | e1a672e427f0e18d35b9025b94186d74fd437cbf (diff) |
FAST_TEXT_DELAY_F
-rw-r--r-- | constants/wram_constants.asm | 4 | ||||
-rw-r--r-- | data/default_options.asm | 2 | ||||
-rw-r--r-- | home.asm | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index 0bd3d54b9..49ea2e8a0 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -31,8 +31,8 @@ TEXT_DELAY_SLOW EQU 5 ; TextBoxFlags: const_def - const TEXT_DELAY_F ; 0 - const NO_TEXT_DELAY_F ; 1 + const FAST_TEXT_DELAY_F ; 0 + const NO_TEXT_DELAY_F ; 1 ; Options2: const_def diff --git a/data/default_options.asm b/data/default_options.asm index 57f621d82..8787b00c7 100644 --- a/data/default_options.asm +++ b/data/default_options.asm @@ -6,7 +6,7 @@ DefaultOptions: ; 14f7c ; TextBoxFrame: frame 1 db FRAME_1 ; TextBoxFlags: use text speed - db 1 << TEXT_DELAY_F + db 1 << FAST_TEXT_DELAY_F ; GBPrinter: normal brightness db GBPRINTER_NORMAL ; Options2: menu account on @@ -323,7 +323,7 @@ PrintLetterDelay:: ; 313d ; force fast scroll? ld a, [TextBoxFlags] - bit TEXT_DELAY_F, a + bit FAST_TEXT_DELAY_F, a jr z, .fast ; text speed |