summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pokemontools/audio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/audio.py b/pokemontools/audio.py
index 38fd65f..0e7d375 100644
--- a/pokemontools/audio.py
+++ b/pokemontools/audio.py
@@ -26,7 +26,7 @@ conf = configuration.Config()
def sort_asms(asms):
"""sort and remove duplicates from a list of tuples
format (address, asm, last_address)"""
- return sorted(set(asms), key=lambda (x,y,z):(x,z,not y.startswith(';'), ':' not in y))
+ return sorted(set(asms), key=lambda (x,y,z):(x,z,not y.startswith(';'), ':' not in y, y))
class NybbleParam:
size = 0.5