From 6293895611465d37d1c7f93c644ab723dfe4b55a Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 17 Jan 2023 20:21:25 -0800 Subject: [PATCH] Make it so debug doesn't return early --- BurnOutSharp/FileType/Executable.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 5e6fce9b..512e2a13 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -47,8 +47,9 @@ namespace BurnOutSharp.FileType { if (scanner.IncludeDebug) Console.WriteLine(ex); - AppendToDictionary(protections, file, "[Out of memory attempting to open]"); - return protections; + // Enable for odd files, keep disabled otherwise + // AppendToDictionary(protections, file, "[Out of memory attempting to open]"); + // return protections; } }