diff --git a/CHANGELIST.md b/CHANGELIST.md index 6619cc8a..6c53c97f 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -59,6 +59,7 @@ - Add archive override for RegexOutputFile - Less confusing implmentation of DatfileExists - Forgot the other locations +- Add future XGD output files ### 3.2.1 (2024-08-05) diff --git a/MPF.Processors/Redumper.cs b/MPF.Processors/Redumper.cs index 8525467c..cdf27416 100644 --- a/MPF.Processors/Redumper.cs +++ b/MPF.Processors/Redumper.cs @@ -469,9 +469,21 @@ namespace MPF.Processors new($"{baseFilename}.2.physical", OutputFileFlags.Binary | OutputFileFlags.Zippable, "physical_2"), + new($"{baseFilename}.security", OutputFileFlags.Binary + | OutputFileFlags.Zippable, + "security"), // TODO: Required for Xbox and X360 new($"{baseFilename}.skeleton", OutputFileFlags.Binary | OutputFileFlags.Zippable, "skeleton"), + new($"{baseFilename}.ss", OutputFileFlags.Binary + | OutputFileFlags.Zippable, + "ss"), + new($"{baseFilename}.ssv1", OutputFileFlags.Binary + | OutputFileFlags.Zippable, + "ssv1"), + new($"{baseFilename}.ssv2", OutputFileFlags.Binary + | OutputFileFlags.Zippable, + "ssv2"), new($"{baseFilename}.state", OutputFileFlags.Required | OutputFileFlags.Binary | OutputFileFlags.Zippable,