diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2018-11-10 18:58:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-10 18:58:49 -0500 |
commit | ab2f46baefda1eac7d2e71929f17525f2a4a5afd (patch) | |
tree | 676def6dcefdcdd122d5adcc4c84a4fad1aeaa5d /macros/scripts | |
parent | 0ce8dd75cd1482a5246e7937b6681bee5fc25bae (diff) | |
parent | b92b91df17038be23552ac9562034a95bd3f78c9 (diff) |
Merge pull request #574 from mid-kid/connections
Make the `connection` macro simpler to use
Diffstat (limited to 'macros/scripts')
-rw-r--r-- | macros/scripts/audio.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/scripts/audio.asm b/macros/scripts/audio.asm index 98933890c..f6969d046 100644 --- a/macros/scripts/audio.asm +++ b/macros/scripts/audio.asm @@ -71,7 +71,7 @@ sound_duty: MACRO if _NARG == 4 db \1 | (\2 << 2) | (\3 << 4) | (\4 << 6) ; duty sequence else - db \1 ; one-byte duty value for legacy support + db \1 ; LEGACY: Support for one-byte duty value endc ENDM |