From 527b9ac7ff74134c57d19dc0951521ac315b8ab7 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 6 Feb 2014 17:13:34 -0500 Subject: audio: Dump an unknown sound effect --- pokemontools/audio.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pokemontools/audio.py b/pokemontools/audio.py index 98a7b0f..65e84ea 100644 --- a/pokemontools/audio.py +++ b/pokemontools/audio.py @@ -460,7 +460,12 @@ def dump_crystal_sfx(): sfx_pointers_address = 0xe927c sfx = dump_sound_clump(sfx_pointers_address, sfx_names, 'Sfx_', sfx=True) + + unknown_sfx = Sound(0xf0d5f, 'UnknownSfx_', sfx=True) + sfx += unknown_sfx.asms + unknown_sfx.labels + sfx = sort_asms(sfx) + sfx = insert_asm_incbins(sfx) # Split up sfx and crystal sfx. crystal_sfx = None -- cgit v1.2.3