diff options
author | dannye <33dannye@gmail.com> | 2021-03-13 23:03:51 -0600 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2021-03-14 10:46:32 -0500 |
commit | df5be0b603917a14ddf59b800462182b2a94363d (patch) | |
tree | 6ca2bddd855b13de221ff3cbc4ef19ea5ebc191e /constants.asm | |
parent | d2fd9503da799885ba73357638e6ccbb8a3226a2 (diff) |
Update audio macros
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/constants.asm b/constants.asm index 46a0cd5..9d6f1b3 100644 --- a/constants.asm +++ b/constants.asm @@ -2,6 +2,7 @@ INCLUDE "hram.asm" INCLUDE "vram.asm" INCLUDE "gbhw.asm" +INCLUDE "constants/audio_constants.asm" INCLUDE "constants/ball_types.asm" INCLUDE "constants/bonus_stage_order_constants.asm" INCLUDE "constants/diglett_stage_constants.asm" @@ -16,4 +17,7 @@ INCLUDE "constants/song_constants.asm" INCLUDE "constants/sound_effect_constants.asm" INCLUDE "constants/species_constants.asm" INCLUDE "constants/stage_constants.asm" -INCLUDE "constants/special_collision_constants.asm"
\ No newline at end of file +INCLUDE "constants/special_collision_constants.asm" + +FALSE EQU 0 +TRUE EQU 1 |