diff options
| author | Sylvie <35663410+Rangi42@users.noreply.github.com> | 2024-09-24 11:39:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-24 11:39:44 -0400 |
| commit | 635b9c4cab523100a797b17b28788281159371c0 (patch) | |
| tree | e2363703bfa658bd230f0822e8a1389837adb0dd /constants | |
| parent | Identify hardware register bits (#469) (diff) | |
| download | pokeyellow-635b9c4cab523100a797b17b28788281159371c0.tar.gz pokeyellow-635b9c4cab523100a797b17b28788281159371c0.tar.xz pokeyellow-635b9c4cab523100a797b17b28788281159371c0.zip | |
Identify `wCurrentMapScriptFlags` bits (#467)
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/ram_constants.asm | 6 |
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 |
