diff --git a/src/raudio.c b/src/raudio.c index c9b9b41c4..8dd400156 100644 --- a/src/raudio.c +++ b/src/raudio.c @@ -745,6 +745,7 @@ void ExportWave(Wave wave, const char *fileName) // Export raw sample data (without header) // NOTE: It's up to the user to track wave parameters SaveFileData(fileName, wave.data, wave.sampleCount*wave.channels*wave.sampleSize/8); + success = true; } if (success) TRACELOG(LOG_INFO, "Wave exported successfully: %s", fileName); diff --git a/src/raylib.h b/src/raylib.h index ed8a3acef..48728fc17 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -104,7 +104,7 @@ #define RL_MALLOC(sz) malloc(sz) #endif #ifndef RL_CALLOC - #define RL_CALLOC(ptr,sz) calloc(ptr,sz) + #define RL_CALLOC(n,sz) calloc(n,sz) #endif #ifndef RL_REALLOC #define RL_REALLOC(ptr,sz) realloc(ptr,sz)