Truncate PIC data for PS4/PS5 (fixes #486)

This commit is contained in:
Matt Nadareski
2023-04-26 08:35:36 -04:00
parent 088f1b8545
commit c154a844e3
2 changed files with 3 additions and 0 deletions

View File

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

View File

@@ -486,6 +486,8 @@ namespace MPF.Modules.DiscImageCreator
switch (this.System)
{
case RedumpSystem.SonyPlayStation3:
case RedumpSystem.SonyPlayStation4:
case RedumpSystem.SonyPlayStation5:
trimLength = 264;
break;
}