This commit is contained in:
Steve Checkoway
2006-08-18 00:05:50 +00:00
parent 530fba773b
commit 17c16210d1
+4 -4
View File
@@ -335,7 +335,7 @@ void ScoreKeeperNormal::AddScore( TapNoteScore score )
void ScoreKeeperNormal::HandleTapScore( const TapNote &tn ) void ScoreKeeperNormal::HandleTapScore( const TapNote &tn )
{ {
if (tn.type == TapNote::mine) if( tn.type == TapNote::mine )
{ {
TapNoteScore score = tn.result.tns; TapNoteScore score = tn.result.tns;
if( score == TNS_HitMine ) if( score == TNS_HitMine )
@@ -346,9 +346,9 @@ void ScoreKeeperNormal::HandleTapScore( const TapNote &tn )
} }
NSMAN->ReportScore( m_pPlayerState->m_PlayerNumber, score, NSMAN->ReportScore( m_pPlayerState->m_PlayerNumber, score,
m_pPlayerStageStats->iScore, m_pPlayerStageStats->iScore,
m_pPlayerStageStats->iCurCombo, m_pPlayerStageStats->iCurCombo,
tn.result.fTapNoteOffset ); tn.result.fTapNoteOffset );
} }
} }