From 059f0357ba5e6ba4eb9a275c7fbe5f849d441bdb Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 15 May 2011 21:28:44 -0400 Subject: [PATCH] [splittiming] Allow #COMBOS to be 0. --- src/TimingData.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TimingData.h b/src/TimingData.h index d68e2ec98e..9a4d67d6f1 100644 --- a/src/TimingData.h +++ b/src/TimingData.h @@ -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. */