]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/log.cpp
Fixed off-by-one error in scaled bitmaps
[virtualjaguar] / src / log.cpp
index cd968ee36f260651ef597bd7b720fafe6aec215b..282898cc199c0fc090a841e766b8562458e64a13 100644 (file)
@@ -34,13 +34,8 @@ 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);