From 17c16210d157a16577231e735e43f6a2ec8e4258 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 18 Aug 2006 00:05:50 +0000 Subject: [PATCH] Cleanup. --- stepmania/src/ScoreKeeperNormal.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/ScoreKeeperNormal.cpp b/stepmania/src/ScoreKeeperNormal.cpp index 60751bc803..e914d66fc3 100644 --- a/stepmania/src/ScoreKeeperNormal.cpp +++ b/stepmania/src/ScoreKeeperNormal.cpp @@ -335,7 +335,7 @@ void ScoreKeeperNormal::AddScore( TapNoteScore score ) void ScoreKeeperNormal::HandleTapScore( const TapNote &tn ) { - if (tn.type == TapNote::mine) + if( tn.type == TapNote::mine ) { TapNoteScore score = tn.result.tns; if( score == TNS_HitMine ) @@ -346,9 +346,9 @@ void ScoreKeeperNormal::HandleTapScore( const TapNote &tn ) } NSMAN->ReportScore( m_pPlayerState->m_PlayerNumber, score, - m_pPlayerStageStats->iScore, - m_pPlayerStageStats->iCurCombo, - tn.result.fTapNoteOffset ); + m_pPlayerStageStats->iScore, + m_pPlayerStageStats->iCurCombo, + tn.result.fTapNoteOffset ); } }