aboutsummaryrefslogtreecommitdiffstats
path: root/constants
diff options
context:
space:
mode:
authorSylvie <35663410+Rangi42@users.noreply.github.com>2024-09-24 11:39:44 -0400
committerGitHub <noreply@github.com>2024-09-24 11:39:44 -0400
commit635b9c4cab523100a797b17b28788281159371c0 (patch)
treee2363703bfa658bd230f0822e8a1389837adb0dd /constants
parentIdentify hardware register bits (#469) (diff)
downloadpokeyellow-635b9c4cab523100a797b17b28788281159371c0.tar.gz
pokeyellow-635b9c4cab523100a797b17b28788281159371c0.tar.xz
pokeyellow-635b9c4cab523100a797b17b28788281159371c0.zip
Identify `wCurrentMapScriptFlags` bits (#467)
Diffstat (limited to 'constants')
-rw-r--r--constants/ram_constants.asm6
1 files changed, 6 insertions, 0 deletions
diff --git a/constants/ram_constants.asm b/constants/ram_constants.asm
index 8102cc7e..756aaa68 100644
--- a/constants/ram_constants.asm
+++ b/constants/ram_constants.asm
@@ -23,6 +23,12 @@ DEF BIT_TEXT_PREDEF EQU 0
; wFontLoaded
DEF BIT_FONT_LOADED EQU 0
+; wCurrentMapScriptFlags
+ const_def 5
+ const BIT_CUR_MAP_LOADED_1 ; 5
+ const BIT_CUR_MAP_LOADED_2 ; 6
+ const BIT_CUR_MAP_USED_ELEVATOR ; 7
+
; wOptions
DEF TEXT_DELAY_MASK EQU %111
const_def 6