diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:57:02 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:57:02 -0400 |
commit | 3b4ea37c363b70ea1683059329879466dec4a094 (patch) | |
tree | 430b2260d025fc28880ce3f76882d97dcd50507d /constants/map_setup_constants.asm | |
parent | 268e2cae0b98779cfb0c590ab9612151c752e868 (diff) |
Replace enum with const, and update many constants to be more like pokegold
Diffstat (limited to 'constants/map_setup_constants.asm')
-rw-r--r-- | constants/map_setup_constants.asm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/constants/map_setup_constants.asm b/constants/map_setup_constants.asm index 7357058..6b65638 100644 --- a/constants/map_setup_constants.asm +++ b/constants/map_setup_constants.asm @@ -1,10 +1,9 @@ - const_def $f1 - const MAPSETUP_CONTINUE ; $f1 - const MAPSETUP_F2 - const MAPSETUP_RELOADMAP ; $f3 - const MAPSETUP_TELEPORT ; $f4 - const MAPSETUP_F5 ; Note: entry is duplicate of $F4 - const MAPSETUP_WARP ; $f6 - const MAPSETUP_CONNECTION ; $f7 - const MAPSETUP_F8 + const MAPSETUP_CONTINUE ; f1 + const_skip + const MAPSETUP_RELOADMAP ; f3 + const MAPSETUP_TELEPORT ; f4 + const_skip + const MAPSETUP_WARP ; f6 + const MAPSETUP_CONNECTION ; f7 + const_skip |