SDL2_mixer binaries

This commit is contained in:
Pòsweg 2017-07-26 16:18:24 +02:00
parent e40533d4ab
commit fd18bb5df8
10 changed files with 1 additions and 1 deletions

BIN
SDL2_mixer.dll Normal file

Binary file not shown.

BIN
assets/sapce-odyssey.ogg Normal file

Binary file not shown.

BIN
libFLAC-8.dll Normal file

Binary file not shown.

BIN
libmodplug-1.dll Normal file

Binary file not shown.

BIN
libogg-0.dll Normal file

Binary file not shown.

BIN
libvorbis-0.dll Normal file

Binary file not shown.

BIN
libvorbisfile-3.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
smpeg2.dll Normal file

Binary file not shown.

View File

@ -68,7 +68,7 @@ void Maps::loadMap(std::string path){
if(blockRect[i][1]+blockRect[i][3] > mapHeight) mapHeight = blockRect[i][1]+blockRect[i][3];
}
gMusic = Mix_LoadMUS( "assets/sand-castle.ogg" );
gMusic = Mix_LoadMUS( "assets/sapce-odyssey.ogg" );
if( gMusic == NULL ){
std::cout << "Failed to load beat music! SDL_mixer Error: " << Mix_GetError() << std::endl;
}