GetAllSongs() -> GetSongs().

This commit is contained in:
Steve Checkoway
2007-04-07 05:36:40 +00:00
parent a9187f5ce4
commit 0cb56b6ec2
11 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -241,7 +241,7 @@ int Profile::GetTotalStepsWithTopGrade( StepsType st, Difficulty d, Grade g ) co
{
int iCount = 0;
FOREACH_CONST( Song*, SONGMAN->GetAllSongs(), pSong )
FOREACH_CONST( Song*, SONGMAN->GetSongs(), pSong )
{
if( (*pSong)->m_SelectionDisplay == Song::SHOW_NEVER )
continue; // skip
@@ -300,7 +300,7 @@ float Profile::GetSongsPossible( StepsType st, Difficulty dc ) const
int iTotalSteps = 0;
// add steps high scores
const vector<Song*> vSongs = SONGMAN->GetAllSongs();
const vector<Song*> vSongs = SONGMAN->GetSongs();
for( unsigned i=0; i<vSongs.size(); i++ )
{
Song* pSong = vSongs[i];