diff options
| author | victorfisac <victorfisac@gmail.com> | 2017-04-03 20:31:10 +0200 |
|---|---|---|
| committer | victorfisac <victorfisac@gmail.com> | 2017-04-03 20:31:10 +0200 |
| commit | 256bc6e1dccfd021239dd0e5a66c377a402c3c59 (patch) | |
| tree | c0baef923b5c60128e7fc76d50eb85982e1ba725 /src | |
| parent | 0d06c946f2a6b7ce0eb374159333872392a707d9 (diff) | |
| parent | e6ed85e993b049a28dcc3c37bd5fadc6ab159df7 (diff) | |
| download | raylib-256bc6e1dccfd021239dd0e5a66c377a402c3c59.tar.gz raylib-256bc6e1dccfd021239dd0e5a66c377a402c3c59.zip | |
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/utils.c b/src/utils.c index 649fda4f..c86c9c82 100644 --- a/src/utils.c +++ b/src/utils.c @@ -44,6 +44,9 @@ * **********************************************************************************************/ +#define SUPPORT_TRACELOG // Output tracelog messages +//#define SUPPORT_TRACELOG_DEBUG // Avoid DEBUG messages tracing + #include "utils.h" #if defined(PLATFORM_ANDROID) @@ -65,9 +68,6 @@ #define RRES_IMPLEMENTATION #include "rres.h" -//#define NO_TRACELOG // Avoid TraceLog() output (any type) -#define DO_NOT_TRACE_DEBUG_MSGS // Avoid DEBUG messages tracing - //---------------------------------------------------------------------------------- // Global Variables Definition //---------------------------------------------------------------------------------- @@ -94,10 +94,10 @@ void TraceLog(int msgType, const char *text, ...) { #if defined(SUPPORT_TRACELOG) static char buffer[128]; - int traceDebugMsgs = 1; + int traceDebugMsgs = 0; #if defined(SUPPORT_TRACELOG_DEBUG) - traceDebugMsgs = 0; + traceDebugMsgs = 1; #endif switch(msgType) |
