diff options
author | IIMarckus <iimarckus@gmail.com> | 2015-07-09 20:16:55 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2015-07-09 20:23:32 -0600 |
commit | 6ef52ba676d1e40e5b663d77e3c1d3420449983d (patch) | |
tree | 180d2d934b544d3d44c641f7ad8e95e3a9181b5d /macros/map.asm | |
parent | 6f3b2d6de8dd697ccb03fb5c4874f042879c9202 (diff) |
Split the sixth argument of map_header into separate arguments.
From PikalaxALT.
Diffstat (limited to 'macros/map.asm')
-rw-r--r-- | macros/map.asm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macros/map.asm b/macros/map.asm index b5f66bafb..2ab981823 100644 --- a/macros/map.asm +++ b/macros/map.asm @@ -71,7 +71,9 @@ map_header: MACRO \1_MapHeader: db BANK(\1_SecondMapHeader), \2, \3 dw \1_SecondMapHeader - db \4, \5, \6, \7 + db \4, \5 + dn \6, \7 + db \8 ENDM |