From 94a9cf0c3f0f193e7f450f3a3a4040a0a85d10bb Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 17 Oct 2025 09:56:04 -0400 Subject: [PATCH] Minor tweak to Wise debug statements --- .../Wrappers/PortableExecutable.Extraction.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs b/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs index de0f8a9e..fb167dd7 100644 --- a/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs +++ b/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs @@ -634,7 +634,7 @@ namespace SabreTools.Serialization.Wrappers var header = WiseOverlayHeader.Create(source); if (header == null) { - if (includeDebug) Console.Error.WriteLine("Could not parse the overlay header"); + if (includeDebug) Console.Error.WriteLine("Could not parse a Wise overlay header"); return false; } @@ -642,7 +642,7 @@ namespace SabreTools.Serialization.Wrappers bool extracted = header.ExtractHeaderDefinedFiles(outputDirectory, includeDebug); if (!extracted) { - if (includeDebug) Console.Error.WriteLine("Could not extract header-defined files"); + if (includeDebug) Console.Error.WriteLine("Could not extract Wise overlay header-defined files"); return false; } @@ -676,7 +676,7 @@ namespace SabreTools.Serialization.Wrappers var header = WiseSection; if (header == null) { - if (includeDebug) Console.Error.WriteLine("Could not parse the section header"); + if (includeDebug) Console.Error.WriteLine("Could not parse a Wise section header"); return false; }