[splittiming] Allow songs to start with 0+ SPEED.

Somehow, this just screams gimmickry.
This commit is contained in:
Jason Felds
2011-05-16 13:05:37 -04:00
parent 2e5b929135
commit f00c59fd2c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -321,7 +321,7 @@ void SMALoader::ProcessSpeeds( TimingData &out, const int iRowsPerBeat, const RS
vector<RString> vs2;
split( *s1, "=", vs2 );
if( RowToBeat(vs2[0], iRowsPerBeat) == 0 ) // First one always seems to have 2.
if( RowToBeat(vs2[0], iRowsPerBeat) == 0 && vs2.size() == 2 ) // First one always seems to have 2.
{
vs2.push_back("0");
}