diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-07-07 00:44:21 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-07-07 00:44:21 -0400 |
commit | f99a715fae311d2611ec4a714b002e103c4642ca (patch) | |
tree | 55c3b2f36f037ab192777755fe7e4b8f5a22131d /constants/trainer_constants.asm | |
parent | 725b86ebbec23bd1f53fd60bf0201c904fee951d (diff) |
Replace some hard-coded values with constants
Diffstat (limited to 'constants/trainer_constants.asm')
-rwxr-xr-x | constants/trainer_constants.asm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/constants/trainer_constants.asm b/constants/trainer_constants.asm index ee890282..d936aa06 100755 --- a/constants/trainer_constants.asm +++ b/constants/trainer_constants.asm @@ -1,6 +1,8 @@ +OPP_ID_OFFSET EQU 200 + trainer_const: MACRO \1 EQU const_value -OPP_\1 EQU const_value + 200 +OPP_\1 EQU const_value + OPP_ID_OFFSET const_value = const_value + 1 ENDM |