Some defines tweaks for consistency

This commit is contained in:
Ray
2017-05-08 02:47:44 +02:00
parent 83aba22e49
commit 822c2ddad5
4 changed files with 18 additions and 24 deletions

View File

@ -79,7 +79,7 @@
#include "utils.h" // Required for: fopen() Android mapping
#endif
#ifdef __APPLE__
#if defined(__APPLE__)
#include "OpenAL/al.h" // OpenAL basic header
#include "OpenAL/alc.h" // OpenAL context header (like OpenGL, OpenAL requires a context to work)
#else
@ -1326,7 +1326,7 @@ void TraceLog(int msgType, const char *text, ...)
va_list args;
int traceDebugMsgs = 0;
#ifdef DO_NOT_TRACE_DEBUG_MSGS
#if defined(DO_NOT_TRACE_DEBUG_MSGS)
traceDebugMsgs = 0;
#endif