diff --git a/stepmania/src/SongManager.h b/stepmania/src/SongManager.h index e14a7d9cd0..33041a90e0 100644 --- a/stepmania/src/SongManager.h +++ b/stepmania/src/SongManager.h @@ -81,6 +81,7 @@ public: void GetSongs( vector &AddTo, int iMaxStages ) const { GetSongs(AddTo,GROUP_ALL,iMaxStages); } void GetSongs( vector &AddTo ) const { GetSongs(AddTo,GROUP_ALL,INT_MAX); } Song *FindSong( RString sPath ); + Song *FindSong( RString sGroup, RString sSong ); Course *FindCourse( RString sName ); int GetNumSongs() const; int GetNumSongGroups() const; @@ -124,8 +125,6 @@ protected: void AddGroup( RString sDir, RString sGroupDirName ); int GetNumEditsLoadedFromProfile( ProfileSlot slot ) const; - Song *FindSong( RString sGroup, RString sSong ); - vector m_pSongs; // all songs that can be played vector m_pBestSongs[NUM_ProfileSlot]; vector m_pShuffledSongs; // used by GetRandomSong