mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
NO_TEXT_SCROLL flag in Options
This commit is contained in:
parent
5613563d1d
commit
0a53612f69
@ -6,8 +6,9 @@ BOXMON EQU 2
|
|||||||
WILDMON EQU 4
|
WILDMON EQU 4
|
||||||
|
|
||||||
; Options: ; cfcc
|
; Options: ; cfcc
|
||||||
BATTLE_SHIFT EQU 6
|
NO_TEXT_SCROLL EQU 4
|
||||||
BATTLE_SCENE EQU 7
|
BATTLE_SHIFT EQU 6
|
||||||
|
BATTLE_SCENE EQU 7
|
||||||
|
|
||||||
; WalkingDirection: ; d043
|
; WalkingDirection: ; d043
|
||||||
STANDING EQU -1
|
STANDING EQU -1
|
||||||
|
3
home.asm
3
home.asm
@ -325,9 +325,8 @@ PrintLetterDelay: ; 313d
|
|||||||
; $cfcf[!0] and A or B override text speed with a one-frame delay.
|
; $cfcf[!0] and A or B override text speed with a one-frame delay.
|
||||||
; Options[4] and $cfcf[!1] disable the delay.
|
; Options[4] and $cfcf[!1] disable the delay.
|
||||||
|
|
||||||
; delay off?
|
|
||||||
ld a, [Options]
|
ld a, [Options]
|
||||||
bit 4, a
|
bit NO_TEXT_SCROLL, a
|
||||||
ret nz
|
ret nz
|
||||||
|
|
||||||
; non-scrolling text?
|
; non-scrolling text?
|
||||||
|
Loading…
Reference in New Issue
Block a user