TimingData

This commit is contained in:
Glenn Maynard
2003-12-18 04:48:26 +00:00
parent c4b9fb2f03
commit c1462d88f5
16 changed files with 165 additions and 395 deletions
+3 -3
View File
@@ -62,8 +62,8 @@ bool SMLoader::LoadFromSMFile( CString sPath, Song &out )
{
LOG->Trace( "Song::LoadFromSMFile(%s)", sPath.c_str() );
out.m_BPMSegments.clear();
out.m_StopSegments.clear();
out.m_Timing.m_BPMSegments.clear();
out.m_Timing.m_StopSegments.clear();
MsdFile msd;
bool bResult = msd.ReadFile( sPath );
@@ -165,7 +165,7 @@ bool SMLoader::LoadFromSMFile( CString sPath, Song &out )
}
else if( 0==stricmp(sValueName,"OFFSET") )
out.m_fBeat0OffsetInSeconds = (float)atof( sParams[1] );
out.m_Timing.m_fBeat0OffsetInSeconds = (float)atof( sParams[1] );
else if( 0==stricmp(sValueName,"SELECTABLE") )
{