diff options
author | Zumi Daxuya <daxuya.zumi+code@protonmail.com> | 2020-12-17 23:41:14 +0700 |
---|---|---|
committer | Zumi Daxuya <daxuya.zumi+code@protonmail.com> | 2020-12-17 23:48:21 +0700 |
commit | 039a2bd71576f96e0819f4657fc3ef44fd8ae4d2 (patch) | |
tree | 9801dfdf5ed5040b31738bf7b7541090f01a62dd /constants | |
parent | 1a131d1ce01bfd12cdb3cf61719e41bff7b699db (diff) |
Suggested changes to #83
Diffstat (limited to 'constants')
-rw-r--r-- | constants/sfx_constants.asm | 4 | ||||
-rwxr-xr-x | constants/sprite_anim_constants.asm | 12 |
2 files changed, 7 insertions, 9 deletions
diff --git a/constants/sfx_constants.asm b/constants/sfx_constants.asm new file mode 100644 index 0000000..9000814 --- /dev/null +++ b/constants/sfx_constants.asm @@ -0,0 +1,4 @@ +; TODO + +SFX_GAME_FREAK_LOGO_RG EQU $31 + diff --git a/constants/sprite_anim_constants.asm b/constants/sprite_anim_constants.asm index 928b601..af60e02 100755 --- a/constants/sprite_anim_constants.asm +++ b/constants/sprite_anim_constants.asm @@ -19,15 +19,9 @@ SPRITEANIMSTRUCT_LENGTH EQU const_value ; wSpriteAnimDict keys - const_def - const SPRITE_ANIM_DICT_DEFAULT ; 0 - const SPRITE_ANIM_DICT_GS_INTRO ; 1 - const SPRITE_ANIM_DICT_GS_INTRO_2 ; 2 - const_skip 2 ; unused - const SPRITE_ANIM_DICT_TEXT_CURSOR ; 5 - const SPRITE_ANIM_DICT_GS_SPLASH ; 6 - const SPRITE_ANIM_DICT_SLOTS ; 7 - const SPRITE_ANIM_DICT_ARROW_CURSOR ; 8 +SPRITE_ANIM_DICT_DEFAULT EQU $00 +SPRITE_ANIM_DICT_GS_SPLASH EQU $27 + ; wSpriteAnimDict size (see ram/wram.asm) NUM_SPRITEANIMDICT_ENTRIES EQU 10 |