diff options
-rw-r--r-- | audio/music/mewtwostage.asm | 26 | ||||
-rwxr-xr-x | tools/dump_audio.py | 3 |
2 files changed, 14 insertions, 15 deletions
diff --git a/audio/music/mewtwostage.asm b/audio/music/mewtwostage.asm index 7a3904b..85dca94 100644 --- a/audio/music/mewtwostage.asm +++ b/audio/music/mewtwostage.asm @@ -632,21 +632,17 @@ Music_MewtwoStage_branch_49043: note C#, 1 sound_ret - db $d8 - db $2 - db $c8 - db $d5 - db $c0 - db $dc - db $a8 - db $80 - db $dc - db $78 - db $40 - db $dc - db $48 - db $d6 - db $c0 +; unreferenced + note_type 2, 12, 8 + octave 3 + note B_, 1 + volume_envelope 10, 8 + note G_, 1 + volume_envelope 7, 8 + note D#, 1 + volume_envelope 4, 8 + octave 2 + note B_, 1 sound_ret Music_MewtwoStage_branch_49062: diff --git a/tools/dump_audio.py b/tools/dump_audio.py index ed1b917..2a7dba7 100755 --- a/tools/dump_audio.py +++ b/tools/dump_audio.py @@ -1036,6 +1036,9 @@ def dump_channel(start_address, sound_name, channel, prefix="", is_sfx=True, add labels = [] branches = set() if address is None: + if sound_name == "MewtwoStage" and channel == 2: + blobs.append(make_blob(0x49052, "; unreferenced\n")) + branches.add(0x49052) blobs.append(make_blob(start_address, "{}{}_Ch{}:\n".format(prefix, sound_name, channel))) address = start_address while 1: |