Skip to content

Commit

Permalink
ROMFS: only identify *.mix as mixer files
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Feb 17, 2014
1 parent a61a89f commit 94c40b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/px_romfs_pruner.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def main():
for line in f:

# handle mixer files differently than startup files
if ".mix" in file_path:
if file_path.endswith(".mix"):
if line.startswith(("Z:", "M:", "R: ", "O:", "S:")):
pruned_content += line
else:
Expand Down

0 comments on commit 94c40b6

Please sign in to comment.