Define appropriate constants as EQU
These constants are defined only once and shouldn't be redefined anyway.
This commit is contained in:
@@ -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__
|
||||
|
Reference in New Issue
Block a user