From a6196851fc3cc5b907072be4d59293f13cca7700 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Sat, 21 Jul 2018 17:41:50 +0200 Subject: [PATCH] Remove useless log Note that the music is not working with emscripten. I think that it related to OGG because WAV are working. --- src/sound.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound.cxx b/src/sound.cxx index ba69a71..3626529 100644 --- a/src/sound.cxx +++ b/src/sound.cxx @@ -349,7 +349,7 @@ CSound::PlayMusic (const std::string & lpszMIDIFilename) if (m_pMusic) Mix_FreeMusic (m_pMusic); -SDL_Log(lpszMIDIFilename.c_str()); + std::string absolute; if (FileExists (lpszMIDIFilename, absolute, Location::LOCATION_ABSOLUTE)) m_pMusic = Mix_LoadMUS (lpszMIDIFilename.c_str ());