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.
This commit is contained in:
pfero
2017-10-28 23:47:52 +02:00
committed by yenatch
parent 4e4e792474
commit 7c9a156133
6 changed files with 269 additions and 269 deletions

View File

@@ -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