Make it so debug doesn't return early

This commit is contained in:
Matt Nadareski
2023-01-17 20:21:25 -08:00
parent f564fb6e9e
commit 6293895611

View File

@@ -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;
}
}