ROMFS: only identify *.mix as mixer files

This commit is contained in:
Julian Oes 2014-02-17 09:06:35 +01:00
parent a61a89f339
commit 94c40b6fa4
1 changed files with 1 additions and 1 deletions

View File

@ -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: