From 3511392d6d21982995c228409896ae2dce9c1123 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 12 Mar 2006 09:06:31 +0000 Subject: [PATCH] Make this public. --- stepmania/src/SongManager.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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