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