From b1d26e10a829a2a1526754b88167485df7e2511f Mon Sep 17 00:00:00 2001 From: GriffinR Date: Tue, 10 Mar 2020 23:13:27 -0400 Subject: Sync map header property names with pokefirered --- asm/macros/map.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'asm/macros') 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 -- cgit v1.2.3