summaryrefslogtreecommitdiff
path: root/macros/audio_macros.asm
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2018-03-19 00:18:50 -0500
committerdannye <33dannye@gmail.com>2018-03-19 00:18:50 -0500
commit32c371b1d3bf5650fa77ada4bc15be6bcce9ea59 (patch)
treed00c6aaf218b605cb59bb82cb11c5995bd4ec64d /macros/audio_macros.asm
parent4398dde1e483d74ae9997aba11f62b9810f9f77b (diff)
sfxnote parameter 1 is length, not duty
also bumb submodule
Diffstat (limited to 'macros/audio_macros.asm')
-rwxr-xr-xmacros/audio_macros.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/audio_macros.asm b/macros/audio_macros.asm
index 6d7b45c8..d4914002 100755
--- a/macros/audio_macros.asm
+++ b/macros/audio_macros.asm
@@ -40,7 +40,7 @@ pitchenvelope: MACRO
ENDC
ENDM
-;format: duty, volume, volume change, pitch
+;format: length [0, 15], volume [0, 15], volume change [-7, 7], pitch
squarenote: MACRO
db $20 | \1
IF \3 < 0
@@ -51,7 +51,7 @@ squarenote: MACRO
dw \4
ENDM
-;format: duty, volume, volume change, pitch
+;format: length [0, 15], volume [0, 15], volume change [-7, 7], pitch
noisenote: MACRO
db $20 | \1
IF \3 < 0