remove unused PlayMusic overload

This commit is contained in:
Chris Danford
2005-07-22 22:17:34 +00:00
parent e2be6fba66
commit 1cfda9a901
5 changed files with 34 additions and 35 deletions
+5 -2
View File
@@ -557,9 +557,12 @@ void ScreenNetSelectMusic::MusicChanged()
{
SOUND->StopMusic();
SOUND->PlayMusic(GAMESTATE->m_pCurSong->GetMusicPath(), true,
SOUND->PlayMusic(
GAMESTATE->m_pCurSong->GetMusicPath(),
NULL,
true,
GAMESTATE->m_pCurSong->m_fMusicSampleStartSeconds,
GAMESTATE->m_pCurSong->m_fMusicSampleLengthSeconds);
GAMESTATE->m_pCurSong->m_fMusicSampleLengthSeconds );
}
}
}