From 833ac91aca324598ac9668e490b4d7f4dbcd2eea Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 19 Jan 2003 23:24:48 +0000 Subject: [PATCH] only ghost flash for great or higher --- stepmania/src/Player.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index 28f3ce1299..66e442619f 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -509,7 +509,8 @@ void Player::OnRowDestroyed( int iIndexThatWasSteppedOn ) iNumNotesInThisRow++; // show the ghost arrow for this column - m_GhostArrowRow.TapNote( c, score, m_Combo.GetCurrentCombo()>g_iBrightGhostThreshold ); + if(score == TNS_GREAT || score == TNS_PERFECT || score == TNS_MARVELOUS) + m_GhostArrowRow.TapNote( c, score, m_Combo.GetCurrentCombo()>g_iBrightGhostThreshold ); } }