diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-10 23:13:27 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-04-28 19:59:08 -0500 |
commit | b1d26e10a829a2a1526754b88167485df7e2511f (patch) | |
tree | c7bc3138a1f0a131a713457e4905ebc71c10b677 /asm/macros/map.inc | |
parent | 724ffe14ee2be59a34dc6a397f6579cc0d820cff (diff) |
Sync map header property names with pokefirered
Diffstat (limited to 'asm/macros/map.inc')
-rw-r--r-- | asm/macros/map.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/macros/map.inc b/asm/macros/map.inc index c98364ccc..b520eb216 100644 --- a/asm/macros/map.inc +++ b/asm/macros/map.inc @@ -102,6 +102,6 @@ .space 2 .endm - .macro map_header_flags allow_bike:req, allow_escape_rope:req, allow_run:req, show_map_name:req - .byte ((\show_map_name & 1) << 3) | ((\allow_run & 1) << 2) | ((\allow_escape_rope & 1) << 1) | \allow_bike + .macro map_header_flags allow_cycling:req, allow_escaping:req, allow_running:req, show_map_name:req + .byte ((\show_map_name & 1) << 3) | ((\allow_running & 1) << 2) | ((\allow_escaping & 1) << 1) | \allow_cycling .endm |