changed displaying debug messages only when running in debug mode 4.0.1.0
authorHolger Schemel <info@artsoft.org>
Sat, 30 Sep 2017 17:00:34 +0000 (19:00 +0200)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Sep 2017 17:00:34 +0000 (19:00 +0200)
src/libgame/misc.c

index 271a8dfbb884946c0f3acfcba022b40d9ba0fa84..ed34319f23abc1bdcc3da32a2e569da2efe6785b 100644 (file)
@@ -1212,6 +1212,10 @@ void Error(int mode, char *format, ...)
                      ANDROID_LOG_UNKNOWN);
 #endif
 
+  /* display debug messages only when running in debug mode */
+  if (mode & ERR_DEBUG && !options.debug)
+    return;
+
   /* display warnings only when running in verbose mode */
   if (mode & ERR_WARN && !options.verbose)
     return;