[splittiming] #MULTIPLIER tag. Acts like #COMBO.

Well, it really does more, but they are more Pump
specific behavior right now. Let's try to stick with
things that can work for all on this parser.
This commit is contained in:
Jason Felds
2011-05-14 18:56:58 -04:00
parent 725224863d
commit 6005995698
3 changed files with 68 additions and 2 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ void SSCLoader::ProcessCombos( TimingData &out, const RString sParam )
continue;
}
const float fComboBeat = StringToFloat( arrayComboValues[0] );
const int iCombos = atoi( arrayComboValues[1] );
const int iCombos = StringToInt( arrayComboValues[1] );
ComboSegment new_seg( BeatToNoteRow( fComboBeat ), iCombos );
out.AddComboSegment( new_seg );
}