summaryrefslogtreecommitdiff
path: root/asm/macros
diff options
context:
space:
mode:
authorPhlosioneer <mattmdrr2@gmail.com>2019-02-26 22:56:22 -0500
committerhuderlem <huderlem@gmail.com>2019-02-28 22:21:16 -0600
commitda0687987d8d4f6cb9a331f30553ffb806e74165 (patch)
treeb85e2dea111aabaee3418efcf498ccfb2be206da /asm/macros
parent189d387f01104a715d788690fbc76d987ea3d6e1 (diff)
Pick better names for constants
Diffstat (limited to 'asm/macros')
-rw-r--r--asm/macros/event.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc
index fa27d049e..708861e32 100644
--- a/asm/macros/event.inc
+++ b/asm/macros/event.inc
@@ -1163,12 +1163,12 @@
.endm
@ Changes the metatile at (x, y) on the current map.
- .macro setmetatile x:req, y:req, metatile_number:req, is_impassable:req
+ .macro setmetatile x:req, y:req, metatile_number:req, has_collision:req
.byte 0xa2
.2byte \x
.2byte \y
.2byte \metatile_number
- .2byte \is_impassable
+ .2byte \has_collision
.endm
@ Queues a weather change to the default weather for the map.