remove unused parameter

This commit is contained in:
Glenn Maynard
2003-07-30 02:01:19 +00:00
parent f3540c9eb7
commit ef7733e121
4 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -137,7 +137,6 @@ MusicWheel::MusicWheel()
SongOptions so;
SONGMAN->GetExtraStageInfo(
GAMESTATE->IsExtraStage2(),
GAMESTATE->m_sPreferredGroup,
GAMESTATE->GetCurrentStyleDef(),
pSong,
pNotes,
@@ -536,7 +535,7 @@ void MusicWheel::BuildWheelItemDatas( vector<WheelItemData> &arrayWheelItemDatas
Notes* pNotes;
PlayerOptions po;
SongOptions so;
SONGMAN->GetExtraStageInfo( GAMESTATE->IsExtraStage2(), GAMESTATE->m_pCurSong->m_sGroupName, GAMESTATE->GetCurrentStyleDef(), pSong, pNotes, po, so );
SONGMAN->GetExtraStageInfo( GAMESTATE->IsExtraStage2(), GAMESTATE->GetCurrentStyleDef(), pSong, pNotes, po, so );
bool bFoundExtraSong = false;