Skip to content

Commit

Permalink
Remove extraneous DVD manufacturer/physical, add needed physical for …
Browse files Browse the repository at this point in the history
…bluray
  • Loading branch information
TurnedToast committed Sep 7, 2024
1 parent d6f39cf commit 42257d8
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions MPF.Processors/Redumper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -459,19 +459,13 @@ internal override List<OutputFile> GetOutputFiles(string baseFilename)
new($"{baseFilename}.1.manufacturer", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"manufacturer_1"),
new($"{baseFilename}.2.manufacturer", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"manufacturer_2"),
new([$"{baseFilename}.physical", $"{baseFilename}.0.physical"], OutputFileFlags.Required
| OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"physical_0"),
new($"{baseFilename}.1.physical", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"physical_1"),
new($"{baseFilename}.2.physical", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"physical_2"),
new($"{baseFilename}.security", System.IsXGD()
? OutputFileFlags.Required | OutputFileFlags.Binary | OutputFileFlags.Zippable
: OutputFileFlags.Binary | OutputFileFlags.Zippable,
Expand Down Expand Up @@ -519,6 +513,9 @@ internal override List<OutputFile> GetOutputFiles(string baseFilename)
new($"{baseFilename}.2.physical", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"physical_2"),
new($"{baseFilename}.3.physical", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"physical_3"),
new($"{baseFilename}.skeleton", OutputFileFlags.Binary
| OutputFileFlags.Zippable,
"skeleton"),
Expand Down

0 comments on commit 42257d8

Please sign in to comment.