Populate internal serial and version from PS3 disc (#432)

This commit is contained in:
Terry Janas
2022-12-04 02:03:29 -06:00
committed by GitHub
parent 115d9857af
commit daf516bf9c
5 changed files with 94 additions and 0 deletions

View File

@@ -732,6 +732,11 @@ namespace MPF.Modules.DiscImageCreator
info.VersionAndEditions.Version = GetPlayStation2Version(drive?.Letter) ?? "";
break;
case RedumpSystem.SonyPlayStation3:
info.VersionAndEditions.Version = GetPlayStation3Version(drive?.Letter) ?? "";
info.CommonDiscInfo.CommentsSpecialFields[SiteCode.InternalSerialName] = GetPlayStation3Serial(drive?.Letter) ?? "";
break;
case RedumpSystem.SonyPlayStation4:
info.VersionAndEditions.Version = GetPlayStation4Version(drive?.Letter) ?? "";
info.CommonDiscInfo.CommentsSpecialFields[SiteCode.InternalSerialName] = GetPlayStation4Serial(drive?.Letter) ?? "";