[splittiming] Right, LOAD the #SPEEDS.

This commit is contained in:
Jason Felds
2011-05-15 16:40:06 -04:00
parent 59febf0c27
commit 11de86e260
2 changed files with 8 additions and 1 deletions
+3 -1
View File
@@ -667,7 +667,9 @@ bool SMALoader::LoadFromSMAFile( const RString &sPath, Song &out )
else if( sValueName=="SPEED" )
{
; // This is something we should consider implementing.
TimingData &timing = (state == SMA_GETTING_STEP_INFO
? pNewNotes->m_Timing : out.m_SongTiming);
ProcessSpeeds( timing, iRowsPerBeat, sParams[1] );
}
else if( sValueName=="MULTIPLIER" )
+5
View File
@@ -558,6 +558,11 @@ bool SSCLoader::LoadFromSSCFile( const RString &sPath, Song &out, bool bFromCach
ProcessWarps(stepsTiming, sParams[1]);
}
else if( sValueName=="SPEED" )
{
ProcessSpeeds( stepsTiming, sParams[1] );
}
else if( sValueName=="LABELS" )
{
ProcessLabels(stepsTiming, sParams[1]);