[splittiming] Fix minor load issue on SPEEDS.

This commit is contained in:
Jason Felds
2011-05-15 21:22:17 -04:00
parent c830bf81fe
commit 58b209959f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -316,9 +316,9 @@ void SMALoader::ProcessSpeeds( TimingData &out, const int iRowsPerBeat, const RS
vector<RString> vs2;
split( *s1, "=", vs2 );
if( vs2[0] == 0 ) // First one always seems to have 2.
if( RowToBeat(vs2[0], iRowsPerBeat) == 0 ) // First one always seems to have 2.
{
vs2.push_back(0);
vs2.push_back("0");
}
if( vs2.size() < 3 )