diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-11 14:13:04 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-11 14:13:04 -0400 |
| commit | 2b003eca72bea42bfaabf8f849ea9711ddc4b350 (patch) | |
| tree | ca981d1f97cbe3314f95926f94ca7947d238f532 /constants | |
| parent | 878e0b3b333215e9f34bd10b94040dfb1c97c988 (diff) | |
Identify some time-related data
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/map_data_constants.asm | 1 | ||||
| -rw-r--r-- | constants/wram_constants.asm | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm index b2c47006..386d7229 100644 --- a/constants/map_data_constants.asm +++ b/constants/map_data_constants.asm @@ -32,6 +32,7 @@ MAP_NONE EQU 0 const PALETTE_NITE const PALETTE_MORN const PALETTE_DARK +NUM_MAP_PALETTES EQU const_value ; FishGroups indexes (see data/wild/fish.asm) const_def diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index 146d24f2..9150cc21 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -122,6 +122,9 @@ DARKNESS EQU 1 << DARKNESS_F ANYTIME EQU MORN | DAY | NITE +; wTimeOfDayPalset:: +DARKNESS_PALSET EQU (DARKNESS_F << 6) | (DARKNESS_F << 4) | (DARKNESS_F << 2) | DARKNESS_F + ; wBattleAnimFlags:: const_def const BATTLEANIM_STOP_F ; 0 |
