From 0edc3800591c0f78703043b9d046aa0fb417d667 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 6 May 2025 15:53:20 -0400 Subject: [PATCH] Fix brackets from last commit --- BinaryObjectScanner/Protection/SecuROM.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/BinaryObjectScanner/Protection/SecuROM.cs b/BinaryObjectScanner/Protection/SecuROM.cs index 3816c026..0f59c174 100644 --- a/BinaryObjectScanner/Protection/SecuROM.cs +++ b/BinaryObjectScanner/Protection/SecuROM.cs @@ -21,14 +21,20 @@ namespace BinaryObjectScanner.Protection name = pex.InternalName; if (name.OptionalEquals("paul.dll", StringComparison.OrdinalIgnoreCase)) + { if (pex.ProductName.OptionalEquals("drEAm")) return $"SecuROM Product Activation v{pex.GetInternalVersion()} - EA Game Authorization Management"; else return $"SecuROM Product Activation v{pex.GetInternalVersion()}"; + } else if (name.OptionalEquals("paul_dll_activate_and_play.dll")) + { return $"SecuROM Product Activation v{pex.GetInternalVersion()}"; + } else if (name.OptionalEquals("paul_dll_preview_and_review.dll")) + { return $"SecuROM Product Activation v{pex.GetInternalVersion()}"; + } name = pex.OriginalFilename; if (name.OptionalEquals("paul_dll_activate_and_play.dll"))