Add HideIncompleteCourses; in some environments, it doesn't make sense to show incomplete courses.

This commit is contained in:
Glenn Maynard
2008-05-13 01:26:02 +00:00
parent de4dec1f7b
commit d03587dd30
3 changed files with 11 additions and 0 deletions
+2
View File
@@ -185,6 +185,7 @@ bool CourseLoaderCRS::LoadFromMsd( const RString &sPath, const MsdFile &msd, Cou
{
LOG->UserLog( "Course file", sPath, "random_within_group entry \"%s\" specifies a group that doesn't exist. "
"This entry will be ignored.", sSong.c_str() );
out.m_bIncomplete = true;
continue; // skip this #SONG
}
}
@@ -211,6 +212,7 @@ bool CourseLoaderCRS::LoadFromMsd( const RString &sPath, const MsdFile &msd, Cou
{
LOG->UserLog( "Course file", sPath, "contains a fixed song entry \"%s\" that does not exist. "
"This entry will be ignored.", sSong.c_str());
out.m_bIncomplete = true;
continue; // skip this #SONG
}
}