diff options
author | pfero <ohpee@loves.dicksinhisan.us> | 2017-10-28 23:47:52 +0200 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-10-28 18:08:24 -0400 |
commit | 7c9a1561332d3ac9522b6c2dfa74e40835ab790b (patch) | |
tree | 428daed38d0319a5e5bda06850733eec786e54cd /constants/tilemap_constants.asm | |
parent | 4e4e7924747b7eeeb898181ccdfb5339d60b1abb (diff) |
Fix WATERTILE/WALLTILE constants
WATRTILE was wrongly defined as 15, and WALLTILE as 1. Those had to be
flipped around.
This has allowed for us to replace inmediate values with these constants
in several places to improve readability.
WATRTILE was renamed to WATERTILE in the name of readability.
Diffstat (limited to 'constants/tilemap_constants.asm')
-rw-r--r-- | constants/tilemap_constants.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/constants/tilemap_constants.asm b/constants/tilemap_constants.asm index 9307a22ad..04f9bcaaa 100644 --- a/constants/tilemap_constants.asm +++ b/constants/tilemap_constants.asm @@ -1,6 +1,6 @@ -LANDTILE EQU 0 -WALLTILE EQU 1 -WATRTILE EQU 15 +LANDTILE EQU 0 +WALLTILE EQU $f +WATERTILE EQU 1 TALK EQU 1 << 4 |