Fixed wave sound playback by using a different wave reader library (thanks Boolsheet!)

Resolves issue #25.
This commit is contained in:
Alex Szpakowski
2013-10-23 16:02:06 -03:00
parent 259bb8ffdb
commit e5adc4e5fd
13 changed files with 2454 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <stdlib.h>
#include "wuff_config.h"
/* Default memory allocators. */
/* They can be overridden with custom functions at build time. */
#ifndef WUFF_MEMALLOC_OVERRIDE
void * wuff_alloc(size_t size)
{
return malloc(size);
}
void wuff_free(void * mem)
{
free(mem);
}
#endif