diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 18:33:31 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-21 18:33:31 -0400 |
commit | c3c18dd19643ea48170bb3d0c5be5c9fe16e473e (patch) | |
tree | 94bb7a5a7438f4d61fdce35144fcae2fa71eaadb /home/audio.asm | |
parent | 91774f206e97d67cb8f16f5afeec03ce9c7e28ca (diff) |
Comment more ROM labels as unreferenced
(Some unreferenced labels are above code which is still used via fallthrough!)
Diffstat (limited to 'home/audio.asm')
-rw-r--r-- | home/audio.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/audio.asm b/home/audio.asm index 7448de022..d9e04dd92 100644 --- a/home/audio.asm +++ b/home/audio.asm @@ -286,12 +286,12 @@ MinVolume:: ld [wVolume], a ret -Unused_FadeOutMusic:: +FadeOutToMusic:: ; unreferenced ld a, 4 ld [wMusicFade], a ret -FadeInMusic:: +FadeInToMusic:: ld a, 4 | (1 << MUSIC_FADE_IN_F) ld [wMusicFade], a ret |