diff options
author | SatoMew <SatoMew@users.noreply.github.com> | 2020-11-29 22:07:26 +0000 |
---|---|---|
committer | SatoMew <SatoMew@users.noreply.github.com> | 2020-11-29 22:07:26 +0000 |
commit | 3756ec6dd94daf1ea5826f9bd9e30e00087f242f (patch) | |
tree | 6f18c63a620e3f714755bda93b9d3215a4f20e34 /constants | |
parent | 083cb38e33891d58158762ac2580bd3b62fcdaec (diff) |
Improve new constants and comment based on feedback
Diffstat (limited to 'constants')
-rw-r--r-- | constants/map_data_constants.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm index bd55f753..605e7013 100644 --- a/constants/map_data_constants.asm +++ b/constants/map_data_constants.asm @@ -4,13 +4,13 @@ MAP_BORDER EQU 3 ; connection directions const_def - shift_const EAST ; 1 - shift_const WEST ; 2 - shift_const SOUTH ; 4 - shift_const NORTH ; 8 + shift_const EAST ; 1 + shift_const WEST ; 2 + shift_const SOUTH ; 4 + shift_const NORTH ; 8 ; flower and water tile animations const_def - const STATIC_FLOWERS_WATER ; 0 - const STATIC_FLOWERS_ANIMATED_WATER ; 1 - const ANIMATED_FLOWERS_WATER ; 2 + const TILEANIM_NONE ; 0 + const TILEANIM_WATER ; 1 + const TILEANIM_WATER_FLOWER ; 2 |