From 9d3969d4cef65fddefc3fe853accc5ce2f25c4bc Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 5 Sep 2021 23:08:41 -0700 Subject: [PATCH] Remove debug output --- BurnOutSharp/ProtectionType/SolidShield.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/BurnOutSharp/ProtectionType/SolidShield.cs b/BurnOutSharp/ProtectionType/SolidShield.cs index 01eb2310..017e2b2b 100644 --- a/BurnOutSharp/ProtectionType/SolidShield.cs +++ b/BurnOutSharp/ProtectionType/SolidShield.cs @@ -77,14 +77,6 @@ namespace BurnOutSharp.ProtectionType if (sections == null) return null; - foreach (var section in sections) - { - string sectionName = System.Text.Encoding.ASCII.GetString(section.Name).Trim('\0'); - int sectionAddr = (int)section.PointerToRawData; - int sectionEnd = sectionAddr + (int)section.VirtualSize; - System.Console.WriteLine($"{sectionName}: {sectionAddr} -> {sectionEnd}"); - } - // Get the .init section, if it exists var initSection = sections.FirstOrDefault(s => Encoding.ASCII.GetString(s.Name).StartsWith(".init")); if (initSection != null)