From f6d496c5cc706b85aeb506a71dc64a695f17f599 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 8 Jul 2006 00:38:15 +0000 Subject: [PATCH] Recognize STARTTIME2 and STARTTIME3 as legal tags: no need to LOG->Trace them. --- stepmania/src/NotesLoaderKSF.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/NotesLoaderKSF.cpp b/stepmania/src/NotesLoaderKSF.cpp index cf50ef575e..cc84734c00 100644 --- a/stepmania/src/NotesLoaderKSF.cpp +++ b/stepmania/src/NotesLoaderKSF.cpp @@ -297,6 +297,9 @@ bool KSFLoader::LoadGlobalData( const RString &sPath, Song &out ) 0==stricmp(sValueName,"STEP") || 0==stricmp(sValueName,"DIFFICULTY")) ; /* Handled in LoadFromKSFFile; don't warn. */ + else if( 0==stricmp(sValueName,"STARTTIME2") || + 0==stricmp(sValueName,"STARTTIME3")) + continue; /* Expected value for other Pump Simulators: don't worry about it here. */ else LOG->Trace( "Unexpected value named '%s'", sValueName.c_str() ); }