shithub: pokecrystal

Download patch

ref: ab823e2b5473f840c038ea6f01ad43dadbddcb08
parent: e1a672e427f0e18d35b9025b94186d74fd437cbf
author: Remy Oukaour <remy.oukaour@gmail.com>
date: Fri Dec 29 08:29:24 EST 2017

FAST_TEXT_DELAY_F

--- a/constants/wram_constants.asm
+++ b/constants/wram_constants.asm
@@ -31,8 +31,8 @@
 
 ; 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
--- a/data/default_options.asm
+++ b/data/default_options.asm
@@ -6,7 +6,7 @@
 ; 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
--- a/home.asm
+++ b/home.asm
@@ -323,7 +323,7 @@
 
 ; force fast scroll?
 	ld a, [TextBoxFlags]
-	bit TEXT_DELAY_F, a
+	bit FAST_TEXT_DELAY_F, a
 	jr z, .fast
 
 ; text speed