Don't warn about MUSICBYTES.

This commit is contained in:
Glenn Maynard
2003-09-02 20:47:47 +00:00
parent 7223d446cb
commit d583499e2d
+3
View File
@@ -116,6 +116,9 @@ bool SMLoader::LoadFromSMFile( CString sPath, Song &out )
else if( 0==stricmp(sValueName,"MUSICLENGTH") )
out.m_fMusicLengthSeconds = (float)atof( sParams[1] );
else if( 0==stricmp(sValueName,"MUSICBYTES") )
; /* ignore */
/* We calculate these. Some SMs in circulation have bogus values for
* these, so make sure we always calculate it ourself. */
else if( 0==stricmp(sValueName,"FIRSTBEAT") )