1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-16 09:38:29 +02:00

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) * Christoph Böhmwalder (@chrboe)
* Elijah Stone
* Emmanuel Vadot (@evadot) * Emmanuel Vadot (@evadot)

View File

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