Make CEG actually work (#407)

I wrote the original line wrong without realizing somehow.
This commit is contained in:
HeroponRikiBestest
2026-02-09 09:25:01 -05:00
committed by GitHub
parent 6cc6f66c95
commit 8df070ad3d

View File

@@ -16,7 +16,7 @@ namespace BinaryObjectScanner.Protection
var strs = exe.GetFirstSectionStrings(".rdata");
if (strs is not null)
{
if (strs.Exists(s => s.Contains("STEAMSTART") && s.Contains("STEAM_DRM_IPC")))
if (strs.Exists(s => s.Contains("STEAMSTART")) && strs.Exists(s => s.Contains("STEAM_DRM_IPC")))
{
if (strs.Exists(s => s.Contains("This file has been stripped")))
{