Clarify LEGACY support

This commit is contained in:
mid-kid 2018-11-11 00:44:07 +01:00
parent 814a720e9d
commit 056cd5e871
2 changed files with 3 additions and 2 deletions

View File

@ -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"

View File

@ -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