Name allow_escaping, allow_running, show_map_name header properties

This commit is contained in:
GriffinR
2020-02-18 14:52:42 -05:00
parent 4643330fdd
commit e94f9c1483
427 changed files with 1711 additions and 858 deletions
+5
View File
@@ -88,3 +88,8 @@
map \map
.space 2
.endm
.macro map_header_flags allow_cycling:req, allow_escaping:req, allow_running:req, show_map_name:req
.byte \allow_cycling
.byte ((\show_map_name & 1) << 2) | ((\allow_running & 1) << 1) | ((\allow_escaping & 1) << 0)
.endm