diff options
author | dannye <33dannye@gmail.com> | 2018-03-19 00:18:50 -0500 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2018-03-19 00:18:50 -0500 |
commit | 32c371b1d3bf5650fa77ada4bc15be6bcce9ea59 (patch) | |
tree | d00c6aaf218b605cb59bb82cb11c5995bd4ec64d | |
parent | 4398dde1e483d74ae9997aba11f62b9810f9f77b (diff) |
sfxnote parameter 1 is length, not duty
also bumb submodule
m--------- | extras | 0 | ||||
-rwxr-xr-x | macros/audio_macros.asm | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extras b/extras -Subproject 0e1798937a4bf723813574281d0dc12c471c919 +Subproject be6d6c9ce9a86231482eafacd4be86728580936 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 |