From 765fb88f8333b869145be00f7d173fa1ad9c4a3c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 7 Mar 2004 00:02:51 +0000 Subject: [PATCH] fix GetBestSongs, GetBestCourses --- stepmania/src/SongManager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/SongManager.h b/stepmania/src/SongManager.h index bc4367510f..2d17f7bfe8 100644 --- a/stepmania/src/SongManager.h +++ b/stepmania/src/SongManager.h @@ -64,8 +64,8 @@ public: // Lookup const vector &GetAllSongs() const { return m_pSongs; } - const vector &GetBestSongs( ProfileSlot slot=PROFILE_SLOT_MACHINE ) const { return m_pBestSongs[PROFILE_SLOT_MACHINE]; } - const vector &GetBestCourses( ProfileSlot slot=PROFILE_SLOT_MACHINE ) const { return m_pBestCourses[PROFILE_SLOT_MACHINE]; } + const vector &GetBestSongs( ProfileSlot slot=PROFILE_SLOT_MACHINE ) const { return m_pBestSongs[slot]; } + const vector &GetBestCourses( ProfileSlot slot=PROFILE_SLOT_MACHINE ) const { return m_pBestCourses[slot]; } void GetSongs( vector &AddTo, CString sGroupName, int iMaxStages = 100000 /*inf*/ ) const; void GetSongs( vector &AddTo, int iMaxStages ) const { GetSongs(AddTo,"",iMaxStages); } void GetSongs( vector &AddTo ) const { GetSongs(AddTo,"",100000 /*inf*/ ); }