diff options
Diffstat (limited to 'constants')
-rw-r--r-- | constants/map_data_constants.asm | 4 | ||||
-rw-r--r-- | constants/sprite_anim_constants.asm | 2 | ||||
-rw-r--r-- | constants/wram_constants.asm | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm index 5a1ec6ede..3d153c63b 100644 --- a/constants/map_data_constants.asm +++ b/constants/map_data_constants.asm @@ -102,7 +102,9 @@ const_value set 1 const OBJECT_1E ; 1e const OBJECT_1F ; 1f const OBJECT_RANGE ; 20 -; 33-39 are not used + ; 21-27 are not used +OBJECT_STRUCT_LENGTH EQU 40 +NUM_OBJECT_STRUCTS EQU 13 ; see ObjectStructs ; map_object struct members (see macros/wram.asm) const_def diff --git a/constants/sprite_anim_constants.asm b/constants/sprite_anim_constants.asm index 1f718ace7..4e88afdf8 100644 --- a/constants/sprite_anim_constants.asm +++ b/constants/sprite_anim_constants.asm @@ -16,6 +16,8 @@ const SPRITEANIMSTRUCT_0D ; d const SPRITEANIMSTRUCT_0E ; e const SPRITEANIMSTRUCT_0F ; f +SPRITEANIMSTRUCT_LENGTH EQU const_value +NUM_SPRITE_ANIM_STRUCTS EQU 10 ; see wSpriteAnimationStructs ; SpriteAnimSeqData indexes (see data/sprite_anims/sequences.asm) const_def diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index 8cf06db06..f2cdf7039 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -116,9 +116,6 @@ PLAYER_SKATE EQU 2 PLAYER_SURF EQU 4 PLAYER_SURF_PIKA EQU 8 -OBJECT_STRUCT_LENGTH EQU 40 -NUM_OBJECT_STRUCTS EQU 13 - ; After-Champion Spawn SPAWN_LANCE EQU 1 SPAWN_RED EQU 2 |