]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/log.cpp
Virtual Jaguar 1.0.5 update (Shamus)
[virtualjaguar] / src / log.cpp
index 173025178d9eef037cc2cc06255e5ef97d06ef3d..cd968ee36f260651ef597bd7b720fafe6aec215b 100644 (file)
@@ -34,9 +34,13 @@ void log_done(void)
 // This logger is used mainly to ensure that text gets written to the log file
 // even if the program crashes. The performance hit is acceptable in this case!
 //
-
+//bool suppressOutput = true;//temporary stuff
+bool suppressOutput = false;//temporary stuff
 void WriteLog(const char * text, ...)
 {
+       if (suppressOutput)
+               return;
+
        va_list arg;
 
        va_start(arg, text);