[splittiming] Allow #COMBOS to be 0.

This commit is contained in:
Jason Felds
2011-05-15 21:28:44 -04:00
parent 275bb63ca0
commit 059f0357ba
+1 -1
View File
@@ -508,7 +508,7 @@ struct ComboSegment
* @param t the amount the combo increases on a succesful hit.
*/
ComboSegment( int s, int t ): m_iStartRow(max(0, s)),
m_iCombo(max(1,t)) {}
m_iCombo(max(0,t)) {}
/**
* @brief The row in which the ComboSegment activates.
*/