From 441f341a53f07ded2b0e8aca585b38c9169a20ab Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 10 Mar 2004 07:59:52 +0000 Subject: [PATCH] color the combo when full combo in progress --- stepmania/src/Combo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Combo.cpp b/stepmania/src/Combo.cpp index 2164650053..416148f8af 100644 --- a/stepmania/src/Combo.cpp +++ b/stepmania/src/Combo.cpp @@ -101,8 +101,9 @@ void Combo::SetCombo( int iCombo ) m_sprCombo.SetZoom( 1 ); + // don't show a colored combo until 1/4 of the way through the song bool bPastMidpoint = GAMESTATE->GetCourseSongIndex()>0 || - GAMESTATE->m_fMusicSeconds > GAMESTATE->m_pCurSong->m_fMusicLengthSeconds/2; + GAMESTATE->m_fMusicSeconds > GAMESTATE->m_pCurSong->m_fMusicLengthSeconds/4; if( bPastMidpoint ) {