mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-10 01:09:10 -04:00
REVIEWED: TRACELOG() macro logic
This commit is contained in:
@ -124,10 +124,11 @@
|
||||
#define SUPPORT_CLIPBOARD_IMAGE 1
|
||||
#endif
|
||||
|
||||
#if SUPPORT_TRACELOG
|
||||
#define TRACELOG(level, ...) TraceLog(level, __VA_ARGS__)
|
||||
#else
|
||||
#if !defined(SUPPORT_TRACELOG) || !SUPPORT_TRACELOG
|
||||
// Not defined or disabled
|
||||
#define TRACELOG(level, ...) (void)0
|
||||
#else
|
||||
#define TRACELOG(level, ...) TraceLog(level, __VA_ARGS__)
|
||||
#endif
|
||||
|
||||
// rcore: Configuration values
|
||||
|
||||
Reference in New Issue
Block a user