diff options
| author | Ray <[email protected]> | 2020-02-03 19:25:05 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-02-03 19:25:05 +0100 |
| commit | a7afd8de99f74139647845c8a20513a4bc217767 (patch) | |
| tree | 1b46a59f0c1809fb9bdc3ddee7d07b72a02eb5d9 /src | |
| parent | cde26c743c382abea56ea5cd9c88d36970a61eea (diff) | |
| download | raylib-a7afd8de99f74139647845c8a20513a4bc217767.tar.gz raylib-a7afd8de99f74139647845c8a20513a4bc217767.zip | |
Update rlgl.h
Diffstat (limited to 'src')
| -rw-r--r-- | src/rlgl.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
