From 99843770cb76133dd4429257ea96c638bc950ef9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 10 May 2005 04:38:48 +0000 Subject: [PATCH] backwards conditional; m_bCountNotesSeparately = false was incorrect --- stepmania/src/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index 3a7ee19274..704cbc7da8 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -1212,7 +1212,7 @@ void Player::OnRowCompletelyJudged( int iIndexThatWasSteppedOn ) * all the columns of the jump. -Chris */ const Game *pCurGame = GAMESTATE->m_pCurGame; - if( pCurGame->m_bCountNotesSeparately ) + if( !pCurGame->m_bCountNotesSeparately ) { TapNoteResult tnr = NoteDataWithScoring::LastTapNoteResult( m_NoteData, iIndexThatWasSteppedOn ); TapNoteScore score = tnr.tns;