summaryrefslogtreecommitdiff
path: root/macros/scripts/events.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-06 12:28:31 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-06 12:28:31 -0400
commit8a79315635ee9ebb6eed5c9648fe89746085d0b1 (patch)
treee4db65c6ced277be38f2cb0bfc85cdc39a90208e /macros/scripts/events.asm
parentd08eb862339c29ffe387f661121ac4dfe79c74ab (diff)
Capitalize rgbds control structures (EQU/EQUS, IF/ELIF/ELSE/ENDC, REPT/ENDR, MACRO/ENDM, etc)
Diffstat (limited to 'macros/scripts/events.asm')
-rwxr-xr-xmacros/scripts/events.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/macros/scripts/events.asm b/macros/scripts/events.asm
index c5f90107..9e84ec62 100755
--- a/macros/scripts/events.asm
+++ b/macros/scripts/events.asm
@@ -183,10 +183,10 @@ ENDM
;\3, \4, ... = additional (optional) event indices
SetEvents: MACRO
SetEvent \1
- rept _NARG - 1
+ REPT _NARG - 1
SetEventReuseHL \2
shift
- endr
+ ENDR
ENDM
@@ -235,10 +235,10 @@ ENDM
;\3 = event index (optional)
ResetEvents: MACRO
ResetEvent \1
- rept _NARG - 1
+ REPT _NARG - 1
ResetEventReuseHL \2
shift
- endr
+ ENDR
ENDM