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
@@ -358,9 +358,12 @@ void MusicBannerWheel::PlayMusicSample()
{
SOUND->StopMusic();
SOUND->PlayMusic(pSong->GetMusicPath(), true,
SOUND->PlayMusic(
pSong->GetMusicPath(),
NULL,
true,
pSong->m_fMusicSampleStartSeconds,
pSong->m_fMusicSampleLengthSeconds);
pSong->m_fMusicSampleLengthSeconds );
}
}
}