diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-01 21:54:00 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-01 21:54:00 -0500 |
commit | 3088a77a21fd39b9bfa0850e676ddbbed5fdf52b (patch) | |
tree | 0fbea7f00115b9643b1b91728e521f7626ccac68 /macros/scripts | |
parent | 323ef81286c554d928520341fbc13ef21dc1ec79 (diff) |
warp_event x, y, map, warp_id
Diffstat (limited to 'macros/scripts')
-rw-r--r-- | macros/scripts/maps.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macros/scripts/maps.asm b/macros/scripts/maps.asm index 12f1adb8e..7d06a620f 100644 --- a/macros/scripts/maps.asm +++ b/macros/scripts/maps.asm @@ -19,10 +19,10 @@ ENDM warp_event: MACRO ;\1: x: left to right, starts at 0 ;\2: y: top to bottom, starts at 0 -;\3: warp destination: starts at 1 -;\4: map id: from constants/map_constants.asm - db \2, \1, \3 - map \4 +;\3: map id: from constants/map_constants.asm +;\4: warp destination: starts at 1 + db \2, \1, \4 + map \3 ENDM coord_event: MACRO |