File tree 4 files changed +21
-22
lines changed
4 files changed +21
-22
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,10 @@ DEF AUTOSCROLL_AORB EQU %01100
39
39
DEF TURNING_SPEED_MASK EQU %10000
40
40
41
41
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
46
46
47
47
; wTextboxFrame::
48
48
const_def
Original file line number Diff line number Diff line change @@ -5221,9 +5221,9 @@ MoveSelectionScreen:
5221
5221
call ClearSprites
5222
5222
pop hl
5223
5223
call BattleMoveDescTextbox
5224
- assert INST_TEXT == 0
5225
5224
ld a , [ wOptions1 ]
5226
5225
and TEXT_DELAY_MASK
5226
+ cp INST_TEXT
5227
5227
jr nz , .no_delay
5228
5228
ld c , 10
5229
5229
call DelayFrames ; 0.333s delay to allow users with autoscroll on start to see the description
Original file line number Diff line number Diff line change @@ -167,17 +167,17 @@ Options_TextSpeed:
167
167
ret
168
168
169
169
.Strings:
170
- dw .Instant
171
- dw .Fast
172
- dw .Medium
173
170
dw .Slow
171
+ dw .Medium
172
+ dw .Fast
173
+ dw .Instant
174
174
175
- .Fast:
176
- db "Fast @"
177
- .Medium:
178
- db "Medium @"
179
175
.Slow:
180
176
db "Slow @"
177
+ .Medium:
178
+ db "Medium @"
179
+ .Fast:
180
+ db "Fast @"
181
181
.Instant:
182
182
db "Instant@"
183
183
Original file line number Diff line number Diff line change 1
1
PrintLetterDelay::
2
2
; Wait before printing the next letter.
3
3
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
-
9
4
; wTextboxFlags[!0] and A or B override text speed with a one-frame delay.
10
5
; wOptions1[4] and wTextboxFlags[!1] disable the delay.
11
6
@@ -18,7 +13,8 @@ PrintLetterDelay::
18
13
ld a , [ wOptions1 ]
19
14
bit NO_TEXT_SCROLL , a
20
15
ret nz
21
- and % 11
16
+ and TEXT_DELAY_MASK
17
+ cp INST_TEXT
22
18
ret z
23
19
ld a , $ 1
24
20
ldh [ hBGMapHalf ], a
@@ -29,14 +25,17 @@ PrintLetterDelay::
29
25
; force fast scroll?
30
26
ld a , [ wTextboxFlags ]
31
27
bit 0 , a
32
- ld a , 2
28
+ ld a , FAST_TEXT
33
29
jr z , .updateDelay
34
30
; text speed
31
+
32
+ ; Slow/Mid/Fast: 5/3/1 frames.
35
33
ld a , [ wOptions1 ]
36
- and % 11
37
- rlca
34
+ and TEXT_DELAY_MASK
38
35
.updateDelay
39
- dec a
36
+ add a
37
+ cpl
38
+ add 6
40
39
ld [ wTextDelayFrames ], a
41
40
.textDelayLoop
42
41
ld a , [ wTextDelayFrames ]
You can’t perform that action at this time.
0 commit comments