summaryrefslogtreecommitdiff
path: root/constants
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2015-09-04 20:33:38 -0400
committerPikalaxALT <PikalaxALT@gmail.com>2015-09-04 21:00:11 -0400
commitdd9b1676898862f70c3352ed46a0f9097a50450c (patch)
tree488abcf46354b628ff8545da113638e7dc01c831 /constants
parent5facf8377aeda68cb3fca389cb1784cf9c2d406b (diff)
Rewrite SetEvents and ResetEvents for unlimited number of events
Diffstat (limited to 'constants')
-rwxr-xr-xconstants/event_macros.asm16
1 files changed, 7 insertions, 9 deletions
diff --git a/constants/event_macros.asm b/constants/event_macros.asm
index cc7c03f5..90a6a59b 100755
--- a/constants/event_macros.asm
+++ b/constants/event_macros.asm
@@ -163,14 +163,13 @@ event_byte = ((\1) / 8)
;\1 = event index
;\2 = event index
-;\3 = event index (optional)
+;\3, \4, ... = additional (optional) event indices
SetEvents: MACRO
SetEvent \1
+ rept (_NARG + -1)
SetEventReuseHL \2
-
- IF _NARG > 2
- SetEventReuseHL \3
- ENDC
+ shift
+ endr
ENDM
;\1 = event index
@@ -214,11 +213,10 @@ event_byte = ((\1) / 8)
;\3 = event index (optional)
ResetEvents: MACRO
ResetEvent \1
+ rept (_NARG + -1)
ResetEventReuseHL \2
-
- IF _NARG > 2
- ResetEventReuseHL \3
- ENDC
+ shift
+ endr
ENDM
;\1 = event index