summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-02-06 17:13:34 -0500
committeryenatch <yenatch@gmail.com>2014-02-06 17:13:34 -0500
commit527b9ac7ff74134c57d19dc0951521ac315b8ab7 (patch)
treee758f6209797e9414101e630411b6881c53cd95d
parent7b381c54610806b3d5db0587fe8b3def2a3637c6 (diff)
audio: Dump an unknown sound effect
-rw-r--r--pokemontools/audio.py5
1 files changed, 5 insertions, 0 deletions
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