Update rlgl.h

This commit is contained in:
Ray 2020-02-03 19:25:05 +01:00
parent cde26c743c
commit a7afd8de99
1 changed files with 3 additions and 3 deletions

View File

@ -82,11 +82,11 @@
#if defined(SUPPORT_TRACELOG_DEBUG)
#define TRACELOGD(...) TraceLog(LOG_DEBUG, __VA_ARGS__)
#else
#define TRACELOGD(...) void(0)
#define TRACELOGD(...) (void)0
#endif
#else
#define TRACELOG(level, ...) void(0)
#define TRACELOGD(...) void(0)
#define TRACELOG(level, ...) (void)0
#define TRACELOGD(...) (void)0
#endif
// Allow custom memory allocators