diff --git a/stepmania/src/RageSounds.cpp b/stepmania/src/RageSounds.cpp index efb70b5020..640e10fd71 100644 --- a/stepmania/src/RageSounds.cpp +++ b/stepmania/src/RageSounds.cpp @@ -28,7 +28,7 @@ void RageSounds::PlayMusic(CString file, bool force_loop, float start_sec, float // LOG->Trace("play '%s' (current '%s')", file.c_str(), music->GetLoadedFilePath().c_str()); if(music->IsPlaying()) { - if( music->GetLoadedFilePath() == file ) + if( !music->GetLoadedFilePath().CompareNoCase(file) ) return; // do nothing music->StopPlaying();