diff --git a/BurnOutSharp/PackerType/IntelInstallationFramework.cs b/BurnOutSharp/PackerType/IntelInstallationFramework.cs index 7871619a..f8b50e4d 100644 --- a/BurnOutSharp/PackerType/IntelInstallationFramework.cs +++ b/BurnOutSharp/PackerType/IntelInstallationFramework.cs @@ -47,14 +47,6 @@ namespace BurnOutSharp.PackerType var sections = pex?.SectionTable; if (sections == null) return null; - - foreach (var section in sections) - { - string sectionName = 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 .rsrc section, if it exists var rsrcSection = sections.FirstOrDefault(s => Encoding.ASCII.GetString(s.Name).StartsWith(".rsrc"));