diff options
author | yenatch <yenatch@gmail.com> | 2014-02-06 18:40:11 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-06 18:40:11 -0500 |
commit | c723f32d11974686237ce848c04a71068f59d34e (patch) | |
tree | 7b88a7d5ab5fae63b341292f505df0838ebccc09 | |
parent | 45833dcbafb71715159e07b563b3cf4b6f5471cb (diff) |
audio: Don't use underscores in base labels
-rw-r--r-- | pokemontools/audio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/audio.py b/pokemontools/audio.py index b585eca..3d75d49 100644 --- a/pokemontools/audio.py +++ b/pokemontools/audio.py @@ -484,7 +484,7 @@ def dump_crystal_sfx(): sfx = dump_sound_clump(sfx_pointers_address, sfx_names, 'Sfx_', sfx=True) - unknown_sfx = Sound(0xf0d5f, 'UnknownSfx_', sfx=True) + unknown_sfx = Sound(0xf0d5f, 'UnknownSfx', sfx=True) sfx += unknown_sfx.asms + unknown_sfx.labels sfx = sort_asms(sfx) |