From b66e01f7b47576801bb71224b27ecf82bbfccaf5 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 15 Mar 2022 22:11:37 -0700 Subject: [PATCH] Fix SLL comment --- BurnOutSharp/ProtectionType/SecuROM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BurnOutSharp/ProtectionType/SecuROM.cs b/BurnOutSharp/ProtectionType/SecuROM.cs index b8b49495..7f4ca2d2 100644 --- a/BurnOutSharp/ProtectionType/SecuROM.cs +++ b/BurnOutSharp/ProtectionType/SecuROM.cs @@ -40,7 +40,7 @@ namespace BurnOutSharp.ProtectionType if (shrSection) return $"SecuROM 8 (White Label)"; - // Get the .shr section, if it exists + // Get the .sll section, if it exists bool sllSection = pex.ContainsSection(".sll", exact: true); if (sllSection) return $"SecuROM SLL Protected (for SecuROM v8.x)";