From 869c6be7edcc21a200507b8214208c2d1fc23406 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 25 Feb 2006 07:54:41 +0000 Subject: [PATCH] These aren't unexpected--they are documented, we just don't support them--so don't clutter the logs with them. --- stepmania/src/CourseLoaderCRS.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/stepmania/src/CourseLoaderCRS.cpp b/stepmania/src/CourseLoaderCRS.cpp index af9a5f98d1..dec451909f 100644 --- a/stepmania/src/CourseLoaderCRS.cpp +++ b/stepmania/src/CourseLoaderCRS.cpp @@ -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] );