remove Workout, fold into EditCourses

This commit is contained in:
Chris Danford
2009-03-22 08:42:27 +00:00
parent 415e464926
commit ed75682b9f
48 changed files with 781 additions and 464 deletions
+2 -2
View File
@@ -251,7 +251,7 @@ int Profile::GetTotalStepsWithTopGrade( StepsType st, Difficulty d, Grade g ) co
{
int iCount = 0;
FOREACH_CONST( Song*, SONGMAN->GetSongs(), pSong )
FOREACH_CONST( Song*, SONGMAN->GetAllSongs(), pSong )
{
if( !(*pSong)->NormallyDisplayed() )
continue; // skip
@@ -310,7 +310,7 @@ float Profile::GetSongsPossible( StepsType st, Difficulty dc ) const
int iTotalSteps = 0;
// add steps high scores
const vector<Song*> &vSongs = SONGMAN->GetSongs();
const vector<Song*> &vSongs = SONGMAN->GetAllSongs();
for( unsigned i=0; i<vSongs.size(); i++ )
{
Song* pSong = vSongs[i];