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 | |
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')
-rw-r--r-- | macros/legacy.asm | 3 | ||||
-rw-r--r-- | macros/scripts/audio.asm | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/macros/legacy.asm b/macros/legacy.asm index 35e6e9ccb..7f53dd565 100644 --- a/macros/legacy.asm +++ b/macros/legacy.asm @@ -1,5 +1,6 @@ -; Legacy support for pre-2018 pokecrystal. +; Legacy support for old pokecrystal. ; Allows porting scripts with as few edits as possible. +; Legacy support not in this file can be found by looking for the keyword: "LEGACY" ; macros/rst.asm callba EQUS "farcall" 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 |