diff options
author | yenatch <yenatch@gmail.com> | 2018-06-29 21:15:33 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-06-29 21:15:33 -0400 |
commit | f085da3a9ba7a9e09398aedd3e41326b8d803756 (patch) | |
tree | 2ba530cab11d941debbaae5161de844b4b7fef10 /include/macros | |
parent | c090b6d921b5c4b77862904052a58de9a34f5af8 (diff) |
fix WarpEvent struct
Diffstat (limited to 'include/macros')
-rw-r--r-- | include/macros/map.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/macros/map.inc b/include/macros/map.inc index 80257fd23..bc54271d4 100644 --- a/include/macros/map.inc +++ b/include/macros/map.inc @@ -26,9 +26,9 @@ inc _num_npcs .endm - .macro warp_def x, y, byte, warp, map_id + .macro warp_def x, y, elevation, warp, map_id .2byte \x, \y - .byte \byte, \warp + .byte \elevation, \warp .byte \map_id & 0xFF @ map num .byte \map_id >> 8 @ map group inc _num_warps |