diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2019-05-25 13:54:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-25 13:54:29 -0400 |
commit | e8ddecd0eb1b79f2436f1ea8a0f2163bedec7550 (patch) | |
tree | 0d512816b512f747fe7c8e795df4ca34f8efaec0 /constants/deco_constants.asm | |
parent | b24cd55f968909c3ec29c6455a32463c987f3063 (diff) | |
parent | 476f9ba40d5b59fd724ac1234b34448df372d52c (diff) |
Merge pull request #636 from mid-kid/patch
Small cleanups
Diffstat (limited to 'constants/deco_constants.asm')
-rw-r--r-- | constants/deco_constants.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/constants/deco_constants.asm b/constants/deco_constants.asm index f385e7cd7..d18018214 100644 --- a/constants/deco_constants.asm +++ b/constants/deco_constants.asm @@ -62,8 +62,8 @@ ENDM ; decorations: ; - DecorationAttributes (see data/decorations/attributes.asm) ; - DecorationIDs (see data/decorations/decorations.asm) -const_value = 1 -__enum__ = 0 + const_def 1 + enum_start ; FindOwnedBeds.beds values (see engine/overworld/decorations.asm) const BEDS deco FEATHERY_BED @@ -121,7 +121,7 @@ __enum__ = 0 deco GEODUDE_DOLL deco MACHOP_DOLL deco TENTACOOL_DOLL -NUM_NON_TROPHY_DECOS = __enum__ +NUM_NON_TROPHY_DECOS EQU __enum__ deco GOLD_TROPHY_DOLL deco SILVER_TROPHY_DOLL -NUM_DECOS = __enum__ +NUM_DECOS EQU __enum__ |