Browse Source

Revert "REVIEWED: `TRACELOG()` macro logic"

This reverts commit ea92677902.
pull/5617/head
Ray 4 days ago
parent
commit
416da9aca6
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      src/config.h

+ 3
- 4
src/config.h View File

@ -124,11 +124,10 @@
#define SUPPORT_CLIPBOARD_IMAGE 1
#endif
#if !defined(SUPPORT_TRACELOG) || !SUPPORT_TRACELOG
// Not defined or disabled
#define TRACELOG(level, ...) (void)0
#else
#if SUPPORT_TRACELOG
#define TRACELOG(level, ...) TraceLog(level, __VA_ARGS__)
#else
#define TRACELOG(level, ...) (void)0
#endif
// rcore: Configuration values

Loading…
Cancel
Save