]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_wav.c
Optimize VectorNormalize macros by not doing the sqrt on 0 length, this also means...
[xonotic/darkplaces.git] / snd_wav.c
index 6f861913335007bb2f155a68aa5b672c16cdaaee..d23a8b5126487ca3b01196c8c5c17ffc61492565 100644 (file)
--- a/snd_wav.c
+++ b/snd_wav.c
 */
 
 
-#include "quakedef.h"
+#include "darkplaces.h"
 #include "snd_main.h"
 #include "snd_wav.h"
-
+#include "sound.h"
 
 typedef struct wavinfo_s
 {
@@ -265,7 +265,7 @@ const snd_fetcher_t wav_fetcher = { WAV_GetSamplesFloat, NULL, WAV_FreeSfx };
 S_LoadWavFile
 ==============
 */
-qboolean S_LoadWavFile (const char *filename, sfx_t *sfx)
+qbool S_LoadWavFile (const char *filename, sfx_t *sfx)
 {
        fs_offset_t filesize;
        unsigned char *data;
@@ -344,5 +344,6 @@ qboolean S_LoadWavFile (const char *filename, sfx_t *sfx)
        sfx->loopstart = min(sfx->loopstart, sfx->total_length);
        sfx->flags &= ~SFXFLAG_STREAMED;
 
+       Mem_Free(data); // we already got a copy of this in fetcher_data
        return true;
 }