IsFixed and AllSongsAreFixed were identical. IsFixed -> AllSongsAreFixed.

This commit is contained in:
Steve Checkoway
2006-02-21 01:48:01 +00:00
parent e6a456e1c3
commit 439c0f2011
5 changed files with 11 additions and 37 deletions
+2 -2
View File
@@ -115,7 +115,7 @@ void SaveCatalogXml( LoadingWindow *loading_window )
Course* pCourse = vpCourses[i];
// skip non-fixed courses. We don't have any stable data for them other than
// the title.
if( !pCourse->IsFixed() )
if( !pCourse->AllSongsAreFixed() )
continue;
if( UNLOCKMAN->CourseIsLocked(pCourse) )
continue;
@@ -203,7 +203,7 @@ void SaveCatalogXml( LoadingWindow *loading_window )
// skip non-fixed courses. We don't have any stable data for them other than
// the title.
if( !pCourse->IsFixed() )
if( !pCourse->AllSongsAreFixed() )
continue;
if( UNLOCKMAN->CourseIsLocked(pCourse) )
continue;