mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 01:29:43 +01:00
add myself to the contributors file, fix formatting
This commit is contained in:
parent
19339af706
commit
f012f7c8b5
2 changed files with 5 additions and 1 deletions
|
@ -2,3 +2,4 @@ Contributors
|
|||
------------
|
||||
|
||||
* Christoph Böhmwalder (@chrboe)
|
||||
* Elijah Stone
|
||||
|
|
|
@ -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);
|
||||
if (length) FILESYSTEM_freeMemory(&mem);
|
||||
if (length)
|
||||
{
|
||||
FILESYSTEM_freeMemory(&mem);
|
||||
}
|
||||
|
||||
if (sound == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue