From aaad56794b06ba4c5e07c178787ec0fc665fee3d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 10 Sep 2020 21:50:59 -0700 Subject: [PATCH] Fix odd case for secdrv.sys (fixes #8) --- BurnOutSharp/ProtectionType/SafeDisc.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BurnOutSharp/ProtectionType/SafeDisc.cs b/BurnOutSharp/ProtectionType/SafeDisc.cs index 5b804264..42a643b1 100644 --- a/BurnOutSharp/ProtectionType/SafeDisc.cs +++ b/BurnOutSharp/ProtectionType/SafeDisc.cs @@ -214,7 +214,7 @@ namespace BurnOutSharp.ProtectionType else if (fi.Length == 11973) return "SafeDisc 3.20"; else - return "SafeDisc 2 or greater"; + return "SafeDisc 1 or greater"; } private static string GetVersion(byte[] fileContent, int position)