- turn off music playing while game is loading

This commit is contained in:
Mark Vejvoda 2011-01-20 19:56:11 +00:00
parent d32a52a072
commit b73045b349
1 changed files with 3 additions and 0 deletions

View File

@ -357,6 +357,9 @@ void Game::load(LoadGameItem loadTypes) {
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d] loadTypes = %d, gameSettings = [%s]\n",__FILE__,__FUNCTION__,__LINE__,loadTypes,this->gameSettings.toString().c_str());
SoundRenderer &soundRenderer= SoundRenderer::getInstance();
soundRenderer.stopAllSounds();
Config &config = Config::getInstance();
Logger &logger= Logger::getInstance();