Skip to content

Commit

Permalink
Ensure manufacturer files starting from 0 are zipped in redumper DVD …
Browse files Browse the repository at this point in the history
…processing
  • Loading branch information
TurnedToast committed Sep 7, 2024
1 parent fb7b6ff commit d6f39cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion MPF.Processors/Redumper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,11 @@ internal override List<OutputFile> GetOutputFiles(string baseFilename)
"log"),
new CustomOutputFile($"{baseFilename}.log", OutputFileFlags.Required,
DatfileExists),
new([$"{baseFilename}.manufacturer", $"{baseFilename}.1.manufacturer"], OutputFileFlags.Required
new([$"{baseFilename}.manufacturer", $"{baseFilename}.0.manufacturer"], OutputFileFlags.Required
| OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"manufacturer_0"),
new($"{baseFilename}.1.manufacturer", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"manufacturer_1"),
new($"{baseFilename}.2.manufacturer", OutputFileFlags.Binary
Expand Down

0 comments on commit d6f39cf

Please sign in to comment.