diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-07-11 15:47:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-11 15:47:19 -0400 |
| commit | aa97e196dd5b37e89db5ddf154dc7aea9b02a045 (patch) | |
| tree | c994a1ca8f587d674e680ec808e7fcbaab4d053d /constants/map_data_constants.asm | |
| parent | Merge pull request #268 from Rangi42/master (diff) | |
| parent | Use const_skip and const_next macros for brevity (diff) | |
| download | pokeyellow-aa97e196dd5b37e89db5ddf154dc7aea9b02a045.tar.gz pokeyellow-aa97e196dd5b37e89db5ddf154dc7aea9b02a045.tar.xz pokeyellow-aa97e196dd5b37e89db5ddf154dc7aea9b02a045.zip | |
Merge pull request #269 from Rangi42/master
Remove enum; add const_skip and const_next
Diffstat (limited to 'constants/map_data_constants.asm')
| -rwxr-xr-x | constants/map_data_constants.asm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm index 4b98bdb3..5efd9928 100755 --- a/constants/map_data_constants.asm +++ b/constants/map_data_constants.asm @@ -3,12 +3,14 @@ MAP_BORDER EQU 3 ; connection directions -EAST EQU 1 -WEST EQU 2 -SOUTH EQU 4 -NORTH EQU 8 + const_def + shift_const EAST ; 1 + shift_const WEST ; 2 + shift_const SOUTH ; 4 + shift_const NORTH ; 8 ; tileset environments -INDOOR EQU 0 -CAVE EQU 1 -OUTDOOR EQU 2 + const_def + const INDOOR ; 0 + const CAVE ; 1 + const OUTDOOR ; 2 |
