diff --git a/stepmania/src/ScreenWithMenuElements.cpp b/stepmania/src/ScreenWithMenuElements.cpp index 1c43a98290..dc3a1ebc1b 100644 --- a/stepmania/src/ScreenWithMenuElements.cpp +++ b/stepmania/src/ScreenWithMenuElements.cpp @@ -192,7 +192,11 @@ void ScreenWithMenuElements::StartPlayingMusic() /* Some screens should leave the music alone (eg. ScreenPlayerOptions music * sample left over from ScreenSelectMusic). */ if( PLAY_MUSIC ) - SOUND->PlayMusic( m_sPathToMusic ); + { + GameSoundManager::PlayMusicParams pmp; + pmp.sFile = m_sPathToMusic; + SOUND->PlayMusic( pmp ); + } } void ScreenWithMenuElements::Update( float fDeltaTime )