From 90d5bd52a2bb35af02f70132bfd7d590661ec51b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 3 Dec 2022 23:17:29 -0800 Subject: [PATCH] Check more EA resources --- BurnOutSharp/ProtectionType/ElectronicArts.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BurnOutSharp/ProtectionType/ElectronicArts.cs b/BurnOutSharp/ProtectionType/ElectronicArts.cs index 79306670..a24a4a46 100644 --- a/BurnOutSharp/ProtectionType/ElectronicArts.cs +++ b/BurnOutSharp/ProtectionType/ElectronicArts.cs @@ -32,6 +32,8 @@ namespace BurnOutSharp.ProtectionType if (pex.FindDialogByTitle("About CDKey").Any()) return $"EA CdKey Registration Module {Utilities.GetInternalVersion(pex)}"; + else if (pex.FindGenericResource("About CDKey").Any()) + return $"EA CdKey Registration Module {Utilities.GetInternalVersion(pex)}"; // Get the .data/DATA section, if it exists var dataSectionRaw = pex.GetFirstSectionData(".data") ?? pex.GetFirstSectionData("DATA");