From 32342ef5df807d0b865c1781ae2fbddaf182df2b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 10 Apr 2007 18:16:53 +0000 Subject: [PATCH] default params --- stepmania/src/MusicWheel.cpp | 4 ++-- stepmania/src/SongManager.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index 5e8a1b4921..9985c4a872 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -372,7 +372,7 @@ void MusicWheel::GetSongList( vector &arraySongs, SortOrder so, const RSt { Song* pSong; Steps* pSteps; - SONGMAN->GetExtraStageInfo( GAMESTATE->IsExtraStage2(), GAMESTATE->GetCurrentStyle(), pSong, pSteps, NULL, NULL ); + SONGMAN->GetExtraStageInfo( GAMESTATE->IsExtraStage2(), GAMESTATE->GetCurrentStyle(), pSong, pSteps ); if( find( arraySongs.begin(), arraySongs.end(), pSong ) == arraySongs.end() ) arraySongs.push_back( pSong ); @@ -563,7 +563,7 @@ void MusicWheel::BuildWheelItemDatas( vector &arrayWheelItemDat { Song* pSong; Steps* pSteps; - SONGMAN->GetExtraStageInfo( GAMESTATE->IsExtraStage2(), GAMESTATE->GetCurrentStyle(), pSong, pSteps, NULL, NULL ); + SONGMAN->GetExtraStageInfo( GAMESTATE->IsExtraStage2(), GAMESTATE->GetCurrentStyle(), pSong, pSteps ); for( unsigned i=0; i &AddTo, bool bIncludeAutogen ) const; void GetExtraStageInfo( bool bExtra2, const Style *s, - Song*& pSongOut, Steps*& pStepsOut, PlayerOptions *pPlayerOptionsOut, SongOptions *pSongOptionsOut ); + Song*& pSongOut, Steps*& pStepsOut, PlayerOptions *pPlayerOptionsOut = NULL, SongOptions *pSongOptionsOut = NULL ); Song* GetSongFromDir( RString sDir ) const; Course* GetCourseFromPath( RString sPath ) const; // path to .crs file, or path to song group dir Course* GetCourseFromName( RString sName ) const;