diff options
author | Yoann Fievez <yoann.fievez@gmail.com> | 2021-11-06 00:45:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-05 19:45:09 -0400 |
commit | f68af5c6e95a11daa3bc8daaf28c4e9a779615b9 (patch) | |
tree | ac8bdd875ab87440b0a829fa1ac26c015738b169 /constants/misc_constants.asm | |
parent | 8349bfd8e646002105dfd6a7f997c26cf0e0624b (diff) |
Add some constants for options (#344)
Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 1bb32f8e..4aff58da 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -7,3 +7,12 @@ TRUE EQU 1 const FLAG_RESET ; 0 const FLAG_SET ; 1 const FLAG_TEST ; 2 + +; wOptions +TEXT_DELAY_FAST EQU %001 ; 1 +TEXT_DELAY_MEDIUM EQU %011 ; 3 +TEXT_DELAY_SLOW EQU %101 ; 5 + + const_def 6 + const BIT_BATTLE_SHIFT ; 6 + const BIT_BATTLE_ANIMATION ; 7 |