diff --git a/BurnOutSharp/ProtectionType/CDProtector.cs b/BurnOutSharp/ProtectionType/CDProtector.cs index b2a0df8b..9247852c 100644 --- a/BurnOutSharp/ProtectionType/CDProtector.cs +++ b/BurnOutSharp/ProtectionType/CDProtector.cs @@ -11,7 +11,7 @@ namespace BurnOutSharp.ProtectionType { if (isDirectory) { - // TODO: Confirm if OR or AND + // TODO: Verify if these are OR or AND if (files.Count(f => Path.GetFileName(f).Equals("_cdp16.dat", StringComparison.OrdinalIgnoreCase)) > 0 || files.Count(f => Path.GetFileName(f).Equals("_cdp16.dll", StringComparison.OrdinalIgnoreCase)) > 0 || files.Count(f => Path.GetFileName(f).Equals("_cdp32.dat", StringComparison.OrdinalIgnoreCase)) > 0 diff --git a/BurnOutSharp/ProtectionType/CDX.cs b/BurnOutSharp/ProtectionType/CDX.cs index 2f183652..5aebba88 100644 --- a/BurnOutSharp/ProtectionType/CDX.cs +++ b/BurnOutSharp/ProtectionType/CDX.cs @@ -11,7 +11,7 @@ namespace BurnOutSharp.ProtectionType { if (isDirectory) { - // TODO: Confirm if OR or AND + // TODO: Verify if these are OR or AND if (files.Count(f => Path.GetFileName(f).Equals("CHKCDX16.DLL", StringComparison.OrdinalIgnoreCase)) > 0 || files.Count(f => Path.GetFileName(f).Equals("CHKCDX32.DLL", StringComparison.OrdinalIgnoreCase)) > 0 || files.Count(f => Path.GetFileName(f).Equals("CHKCDXNT.DLL", StringComparison.OrdinalIgnoreCase)) > 0) diff --git a/BurnOutSharp/ProtectionType/CodeLock.cs b/BurnOutSharp/ProtectionType/CodeLock.cs index 1e2fce3f..ad66e48f 100644 --- a/BurnOutSharp/ProtectionType/CodeLock.cs +++ b/BurnOutSharp/ProtectionType/CodeLock.cs @@ -4,7 +4,7 @@ { public static string CheckContents(string fileContent) { - // TODO: Check if OR or AND + // TODO: Verify if these are OR or AND if (fileContent.Contains("icd1" + (char)0x00) || fileContent.Contains("icd2" + (char)0x00) || fileContent.Contains("CODE-LOCK.OCX"))