Even even stricter copy protection output

This commit is contained in:
Matt Nadareski
2022-04-07 20:56:28 -07:00
parent 97803cd860
commit 80156e73d1
2 changed files with 3 additions and 2 deletions

View File

@@ -40,6 +40,7 @@
- Compress JSON for artifacts alone
- Even stricter output for copy protection section
- Report dictionary to InfoTool
- Even even stricter copy protection output
### 2.3 (2022-02-05)
- Start overhauling Redump information pulling, again

View File

@@ -766,8 +766,8 @@ namespace MPF.Library
// Copy Protection section
if (!string.IsNullOrWhiteSpace(info.CopyProtection.Protection)
|| info.CopyProtection.AntiModchip != YesNo.NULL
|| info.CopyProtection.LibCrypt != YesNo.NULL
|| (info.CopyProtection.AntiModchip != null && info.CopyProtection.AntiModchip != YesNo.NULL)
|| (info.CopyProtection.LibCrypt != null && info.CopyProtection.LibCrypt != YesNo.NULL)
|| !string.IsNullOrWhiteSpace(info.CopyProtection.LibCryptData)
|| !string.IsNullOrWhiteSpace(info.CopyProtection.SecuROMData))
{