diff options
author | Sierraffinity <sierra@domoreaweso.me> | 2020-05-04 20:54:27 -0700 |
---|---|---|
committer | Sierraffinity <sierra@domoreaweso.me> | 2020-05-04 20:54:27 -0700 |
commit | a1244aa5dd4c7519ba6c2dcba5796eec2eba1c90 (patch) | |
tree | 76cd7fa5a9ed806e19221e8d9a11337355f074f5 /asm/macros | |
parent | 072a98ca9aea8bfea7edc65f0a4a230974362b96 (diff) | |
parent | b3b99b52ca978104ebed318f1d238fc97892836a (diff) |
Merge branch 'master' of github.com:pret/pokeemerald
Diffstat (limited to 'asm/macros')
-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 |