These aren't unexpected--they are documented, we just don't support them--so don't clutter the logs with them.

This commit is contained in:
Steve Checkoway
2006-02-25 07:54:41 +00:00
parent 467b6f8a52
commit 869c6be7ed
+7 -1
View File
@@ -230,10 +230,16 @@ bool CourseLoaderCRS::LoadFromMsd( const RString &sPath, const MsdFile &msd, Cou
out.m_vEntries.push_back( new_entry );
}
else if( !stricmp(sValueName, "DISPLAYCOURSE") || !stricmp(sValueName, "COMBO") ||
!stricmp(sValueName, "COMBOMODE") )
{
// Ignore
}
else if( bFromCache && !stricmp(sValueName, "RADAR") )
{
StepsType st = (StepsType) atoi(sParams[1]);
CourseDifficulty cd = (CourseDifficulty) atoi(sParams[2]);
CourseDifficulty cd = (CourseDifficulty) atoi( sParams[2] );
RadarValues rv;
rv.FromString( sParams[3] );