From 2d8a25178e637458c57a9c1c13b15d0cb79c3835 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 29 Aug 2021 22:20:25 -0700 Subject: [PATCH] Fix Cenega naming --- .../{CengaProtectDVD.cs => CenegaProtectDVD.cs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename BurnOutSharp/ProtectionType/{CengaProtectDVD.cs => CenegaProtectDVD.cs} (92%) diff --git a/BurnOutSharp/ProtectionType/CengaProtectDVD.cs b/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs similarity index 92% rename from BurnOutSharp/ProtectionType/CengaProtectDVD.cs rename to BurnOutSharp/ProtectionType/CenegaProtectDVD.cs index 17051ede..3df4d85d 100644 --- a/BurnOutSharp/ProtectionType/CengaProtectDVD.cs +++ b/BurnOutSharp/ProtectionType/CenegaProtectDVD.cs @@ -29,8 +29,8 @@ namespace BurnOutSharp.ProtectionType return null; // Get the .cenega section, if it exists -- TODO: Confirm this check with a real disc - var nicodeSection = sections.FirstOrDefault(s => Encoding.ASCII.GetString(s.Name).StartsWith(".cenega")); - if (nicodeSection != null) + var cenegaSection = sections.FirstOrDefault(s => Encoding.ASCII.GetString(s.Name).StartsWith(".cenega")); + if (cenegaSection != null) return "Cenega ProtectDVD"; return null;