Recognize STARTTIME2 and STARTTIME3 as legal tags: no need to LOG->Trace them.

This commit is contained in:
Jason Felds
2006-07-08 00:38:15 +00:00
parent fa4b293f83
commit f6d496c5cc
+3
View File
@@ -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() );
}