Skip to content

Commit

Permalink
Only display song name for .mmrs and .zseq files
Browse files Browse the repository at this point in the history
  • Loading branch information
rrealmuto committed Nov 18, 2024
1 parent 7c38715 commit a0319cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MusicHelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def process_sequence_mmrs(filepath: str, file_name: str, seq_type: str, include_
instrument_set = '-'
else:
instrument_set = int(seq_file.split(".zseq")[0], 16) # Get the instrument set from the .zseq file name
cosmetic_name = filepath
cosmetic_name, _ext = os.path.splitext(file_name)
# Create new sequence
seq = Sequence(filepath, cosmetic_name, seq_type=seq_type, seq_file = seq_file, instrument_set = instrument_set)
if zbank_file:
Expand Down

0 comments on commit a0319cf

Please sign in to comment.