diff --git a/CHANGELIST.md b/CHANGELIST.md index 14ed59e9..fc2698d2 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -45,6 +45,7 @@ - Fix subdump mkdir path in AV config - Single file packing for .NET 6 again - Add missing BD disc type identifier string +- Truncate PIC data for PS4/PS5 ### 2.5 (2023-03-12) diff --git a/MPF.Modules/DiscImageCreator/Parameters.cs b/MPF.Modules/DiscImageCreator/Parameters.cs index 51e46829..f1dca7bd 100644 --- a/MPF.Modules/DiscImageCreator/Parameters.cs +++ b/MPF.Modules/DiscImageCreator/Parameters.cs @@ -486,6 +486,8 @@ namespace MPF.Modules.DiscImageCreator switch (this.System) { case RedumpSystem.SonyPlayStation3: + case RedumpSystem.SonyPlayStation4: + case RedumpSystem.SonyPlayStation5: trimLength = 264; break; }