Merge for CONTRIBUTORS.txt

This commit is contained in:
Ethan Lee 2020-01-10 17:11:00 -05:00
commit cb3640e505
2 changed files with 5 additions and 1 deletions

View File

@ -2,4 +2,5 @@ Contributors
------------
* Christoph Böhmwalder (@chrboe)
* Elijah Stone
* Emmanuel Vadot (@evadot)

View File

@ -33,7 +33,10 @@ SoundTrack::SoundTrack(const char* fileName)
FILESYSTEM_loadFileToMemory(fileName, &mem, &length);
SDL_RWops *fileIn = SDL_RWFromMem(mem, length);
sound = Mix_LoadWAV_RW(fileIn, 1);
FILESYSTEM_freeMemory(&mem);
if (length)
{
FILESYSTEM_freeMemory(&mem);
}
if (sound == NULL)
{