diff options
| author | Ray <[email protected]> | 2022-07-15 19:05:05 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-07-15 19:05:05 +0200 |
| commit | 8aa105fd5b064460ae16f480ae259f1182dd8ee3 (patch) | |
| tree | 14281ee4843dec6e6cc0493cdd5ffd3f222cc050 /src/raudio.c | |
| parent | 6c2c176a990fe8985b700dd308d00efd4d1d4473 (diff) | |
| download | raylib-8aa105fd5b064460ae16f480ae259f1182dd8ee3.tar.gz raylib-8aa105fd5b064460ae16f480ae259f1182dd8ee3.zip | |
WARNING: REMOVED: raudio_standalone example
Moved to raudio library repo: https://github.com/raysan5/raudio
Diffstat (limited to 'src/raudio.c')
| -rw-r--r-- | src/raudio.c | 10 |
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 |
