File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
BinaryObjectScanner/Protection Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,10 @@ public class SecuROM : IExecutableCheck<PortableExecutable>, IPathCheck
2121
2222 name = pex . InternalName ;
2323 if ( name . OptionalEquals ( "paul.dll" , StringComparison . OrdinalIgnoreCase ) )
24- return $ "SecuROM Product Activation v{ pex . GetInternalVersion ( ) } ";
24+ if ( pex . ProductName . OptionalEquals ( "drEAm" ) )
25+ return $ "SecuROM Product Activation v{ pex . GetInternalVersion ( ) } - EA Game Authorization Management";
26+ else
27+ return $ "SecuROM Product Activation v{ pex . GetInternalVersion ( ) } ";
2528 else if ( name . OptionalEquals ( "paul_dll_activate_and_play.dll" ) )
2629 return $ "SecuROM Product Activation v{ pex . GetInternalVersion ( ) } ";
2730 else if ( name . OptionalEquals ( "paul_dll_preview_and_review.dll" ) )
You can’t perform that action at this time.
0 commit comments