Skip anti-modchip string in some cases

This commit is contained in:
Matt Nadareski
2022-01-01 20:42:52 -08:00
parent 1370909db7
commit cc3330bb27
2 changed files with 3 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
- Add even more safety to clone
- Sanitize filename after check
- Handle pulled linebreaks better
- Skip anti-modchip string in some cases
### 2.2 (2021-12-30)
- Fix Saturn header finding

View File

@@ -361,7 +361,8 @@ namespace MPF.Library
break;
case RedumpSystem.SonyPlayStation:
if (drive != null)
// Only check the disc if the dumping program couldn't detect
if (drive != null && info.CopyProtection.AntiModchip == YesNo.NULL)
{
resultProgress?.Report(Result.Success("Checking for anti-modchip strings... this might take a while!"));
info.CopyProtection.AntiModchip = await GetAntiModchipDetected(drive) ? YesNo.Yes : YesNo.No;