Skip to content

Commit 0edc380

Browse files
committed
Fix brackets from last commit
1 parent 2311dd9 commit 0edc380

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

BinaryObjectScanner/Protection/SecuROM.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,20 @@ public class SecuROM : IExecutableCheck<PortableExecutable>, IPathCheck
2121

2222
name = pex.InternalName;
2323
if (name.OptionalEquals("paul.dll", StringComparison.OrdinalIgnoreCase))
24+
{
2425
if (pex.ProductName.OptionalEquals("drEAm"))
2526
return $"SecuROM Product Activation v{pex.GetInternalVersion()} - EA Game Authorization Management";
2627
else
2728
return $"SecuROM Product Activation v{pex.GetInternalVersion()}";
29+
}
2830
else if (name.OptionalEquals("paul_dll_activate_and_play.dll"))
31+
{
2932
return $"SecuROM Product Activation v{pex.GetInternalVersion()}";
33+
}
3034
else if (name.OptionalEquals("paul_dll_preview_and_review.dll"))
35+
{
3136
return $"SecuROM Product Activation v{pex.GetInternalVersion()}";
37+
}
3238

3339
name = pex.OriginalFilename;
3440
if (name.OptionalEquals("paul_dll_activate_and_play.dll"))

0 commit comments

Comments
 (0)