summaryrefslogtreecommitdiffhomepage
path: root/src/raudio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/raudio.c')
-rw-r--r--src/raudio.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/raudio.c b/src/raudio.c
index 43fa382d..6e29e718 100644
--- a/src/raudio.c
+++ b/src/raudio.c
@@ -178,21 +178,21 @@ typedef struct tagBITMAPINFOHEADER {
#if defined(RAUDIO_STANDALONE)
#ifndef TRACELOG
- #define TRACELOG(level, ...) (void)0
+ #define TRACELOG(level, ...) printf(__VA_ARGS__)
#endif
// Allow custom memory allocators
#ifndef RL_MALLOC
- #define RL_MALLOC(sz) malloc(sz)
+ #define RL_MALLOC(sz) malloc(sz)
#endif
#ifndef RL_CALLOC
- #define RL_CALLOC(n,sz) calloc(n,sz)
+ #define RL_CALLOC(n,sz) calloc(n,sz)
#endif
#ifndef RL_REALLOC
- #define RL_REALLOC(ptr,sz) realloc(ptr,sz)
+ #define RL_REALLOC(ptr,sz) realloc(ptr,sz)
#endif
#ifndef RL_FREE
- #define RL_FREE(ptr) free(ptr)
+ #define RL_FREE(ptr) free(ptr)
#endif
#endif