You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
NO_TEXT_SCROLL flag in Options
This commit is contained in:
@ -6,6 +6,7 @@ BOXMON EQU 2
|
|||||||
WILDMON EQU 4
|
WILDMON EQU 4
|
||||||
|
|
||||||
; Options: ; cfcc
|
; Options: ; cfcc
|
||||||
|
NO_TEXT_SCROLL EQU 4
|
||||||
BATTLE_SHIFT EQU 6
|
BATTLE_SHIFT EQU 6
|
||||||
BATTLE_SCENE EQU 7
|
BATTLE_SCENE EQU 7
|
||||||
|
|
||||||
|
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?
|
||||||
|
Reference in New Issue
Block a user