mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-09 02:16:46 +00:00
Fix brackets from last commit
This commit is contained in:
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user