diff --git a/BurnOutSharp/ProtectionType/CDCheck.cs b/BurnOutSharp/ProtectionType/CDCheck.cs index 4ba83c01..0439a1be 100644 --- a/BurnOutSharp/ProtectionType/CDCheck.cs +++ b/BurnOutSharp/ProtectionType/CDCheck.cs @@ -12,7 +12,7 @@ // CDCheck check = new byte[] { 0x43, 0x44, 0x43, 0x68, 0x65, 0x63, 0x6B }; if (fileContent.Contains(check, out position)) - return "Microsoft Game Studios CD Check" + (includePosition ? $" (Index {position})" : string.Empty); + return "Executable-Based CD Check" + (includePosition ? $" (Index {position})" : string.Empty); return null; }