Consistent comments

This commit is contained in:
Matt Nadareski
2019-09-27 23:57:32 -07:00
parent 550086791b
commit 5a2755d7c7
3 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -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"))