From 194bb88b1de9c6c8cbd056dd9ccac535edf63c3d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 26 Mar 2003 17:38:19 +0000 Subject: [PATCH] reverse conditional; all else is whitespace changes --- stepmania/src/Player.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index 61cdf46187..1b0eae9ada 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -463,22 +463,22 @@ void Player::OnRowDestroyed( TapNoteScore lastScore, int iIndexThatWasSteppedOn int iNumNotesInThisRow = 0; for( int c=0; cm_CurStageStats.iCurCombo[m_PlayerNumber]>(int)BRIGHT_GHOST_COMBO_THRESHOLD; - m_GhostArrowRow.TapNote( c, score, bBright ); - } - break; + bool bBright = GAMESTATE->m_CurStageStats.iCurCombo[m_PlayerNumber]>(int)BRIGHT_GHOST_COMBO_THRESHOLD; + m_GhostArrowRow.TapNote( c, score, bBright ); } + break; } }