diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-01 15:19:27 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-01 15:19:27 -0500 |
commit | 323ef81286c554d928520341fbc13ef21dc1ec79 (patch) | |
tree | 594c4700abd89a5e653092b1180beb914375b7ba /macros | |
parent | b2970e75f4d1a7a2bc7ac58a656ffd350a80cf0a (diff) |
More comments and macros
Diffstat (limited to 'macros')
-rw-r--r-- | macros/scripts/maps.asm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macros/scripts/maps.asm b/macros/scripts/maps.asm index 77f29620b..12f1adb8e 100644 --- a/macros/scripts/maps.asm +++ b/macros/scripts/maps.asm @@ -6,7 +6,8 @@ ENDM scene_script: MACRO ;\1: script pointer - dw \1, 0 + dw \1 + dw 0 ; filler ENDM callback: MACRO @@ -27,7 +28,7 @@ ENDM coord_event: MACRO ;\1: x: left to right, starts at 0 ;\2: y: top to bottom, starts at 0 -;\3: scene id: controlled by setscene/setmapscene +;\3: scene id: a SCENE_* constant; controlled by setscene/setmapscene ;\4: script pointer db \3, \2, \1 db 0 ; filler |