Skip to content

Commit 5015684

Browse files
committed
Fix text speed options
1 parent 16e3ca5 commit 5015684

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

constants/ram_constants.asm

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ DEF AUTOSCROLL_AORB EQU %01100
3939
DEF TURNING_SPEED_MASK EQU %10000
4040

4141
const_def
42-
const INST_TEXT ; %00
43-
const FAST_TEXT ; %01
44-
const MED_TEXT ; %10
45-
const SLOW_TEXT ; %11
42+
const SLOW_TEXT ; %00
43+
const MED_TEXT ; %01
44+
const FAST_TEXT ; %10
45+
const INST_TEXT ; %11
4646

4747
; wTextboxFrame::
4848
const_def

engine/battle/core.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5221,9 +5221,9 @@ MoveSelectionScreen:
52215221
call ClearSprites
52225222
pop hl
52235223
call BattleMoveDescTextbox
5224-
assert INST_TEXT == 0
52255224
ld a, [wOptions1]
52265225
and TEXT_DELAY_MASK
5226+
cp INST_TEXT
52275227
jr nz, .no_delay
52285228
ld c, 10
52295229
call DelayFrames ; 0.333s delay to allow users with autoscroll on start to see the description

engine/menus/options_menu.asm

+7-7
Original file line numberDiff line numberDiff line change
@@ -167,17 +167,17 @@ Options_TextSpeed:
167167
ret
168168

169169
.Strings:
170-
dw .Instant
171-
dw .Fast
172-
dw .Medium
173170
dw .Slow
171+
dw .Medium
172+
dw .Fast
173+
dw .Instant
174174

175-
.Fast:
176-
db "Fast @"
177-
.Medium:
178-
db "Medium @"
179175
.Slow:
180176
db "Slow @"
177+
.Medium:
178+
db "Medium @"
179+
.Fast:
180+
db "Fast @"
181181
.Instant:
182182
db "Instant@"
183183

home/print_text.asm

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
PrintLetterDelay::
22
; Wait before printing the next letter.
33

4-
; The text speed setting in wOptions1 is actually a frame count:
5-
; fast: 1 frame
6-
; mid: 3 frames
7-
; slow: 5 frames
8-
94
; wTextboxFlags[!0] and A or B override text speed with a one-frame delay.
105
; wOptions1[4] and wTextboxFlags[!1] disable the delay.
116

@@ -18,7 +13,8 @@ PrintLetterDelay::
1813
ld a, [wOptions1]
1914
bit NO_TEXT_SCROLL, a
2015
ret nz
21-
and %11
16+
and TEXT_DELAY_MASK
17+
cp INST_TEXT
2218
ret z
2319
ld a, $1
2420
ldh [hBGMapHalf], a
@@ -29,14 +25,17 @@ PrintLetterDelay::
2925
; force fast scroll?
3026
ld a, [wTextboxFlags]
3127
bit 0, a
32-
ld a, 2
28+
ld a, FAST_TEXT
3329
jr z, .updateDelay
3430
; text speed
31+
32+
; Slow/Mid/Fast: 5/3/1 frames.
3533
ld a, [wOptions1]
36-
and %11
37-
rlca
34+
and TEXT_DELAY_MASK
3835
.updateDelay
39-
dec a
36+
add a
37+
cpl
38+
add 6
4039
ld [wTextDelayFrames], a
4140
.textDelayLoop
4241
ld a, [wTextDelayFrames]

0 commit comments

Comments
 (0)