summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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