mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49: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)
|
* Christoph Böhmwalder (@chrboe)
|
||||||
|
* Elijah Stone
|
||||||
|
|
|
@ -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);
|
if (length)
|
||||||
|
{
|
||||||
|
FILESYSTEM_freeMemory(&mem);
|
||||||
|
}
|
||||||
|
|
||||||
if (sound == NULL)
|
if (sound == NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue