From 3b904ee3dece7d278c3aaba35eb2552f89be10a1 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sat, 3 Jan 2015 13:45:00 -0500 Subject: [PATCH] .n files (MrC/MrCpp temp file) are binary. --- toolbox/os.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/toolbox/os.cpp b/toolbox/os.cpp index d664a42..8f1531c 100644 --- a/toolbox/os.cpp +++ b/toolbox/os.cpp @@ -264,6 +264,12 @@ namespace OS return true; break; + case 'n': + // MrC / MrCpp temp file. + if (ext == "n") + return true; + break; + case 'o': if (ext == "o") return true;