summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-03 19:25:05 +0100
committerRay <[email protected]>2020-02-03 19:25:05 +0100
commita7afd8de99f74139647845c8a20513a4bc217767 (patch)
tree1b46a59f0c1809fb9bdc3ddee7d07b72a02eb5d9 /src
parentcde26c743c382abea56ea5cd9c88d36970a61eea (diff)
downloadraylib-a7afd8de99f74139647845c8a20513a4bc217767.tar.gz
raylib-a7afd8de99f74139647845c8a20513a4bc217767.zip
Update rlgl.h
Diffstat (limited to 'src')
-rw-r--r--src/rlgl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index b9e739dd..bb59d443 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -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