From f91cbdb74612bbe528b553ce08c6f63a246f185a Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 16 Jun 2005 21:51:04 +0000 Subject: [PATCH] smaller combo milestone so that large flash plays more often --- stepmania/src/Combo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Combo.cpp b/stepmania/src/Combo.cpp index 94660a9e01..d9a1eba176 100644 --- a/stepmania/src/Combo.cpp +++ b/stepmania/src/Combo.cpp @@ -88,10 +88,10 @@ void Combo::SetCombo( int iCombo, int iMisses ) bool b1000Milestone = false; for( int i=m_iLastSeenCombo+1; i<=iCombo; i++ ) { - if( i < 1000 ) + if( i < 600 ) b100Milestone |= ((i % 100) == 0); else - b1000Milestone |= ((i % 1000) == 0); + b1000Milestone |= ((i % 200) == 0); } m_iLastSeenCombo = iCombo;