This commit is contained in:
Glenn Maynard
2003-09-06 23:39:48 +00:00
parent 0860d0352c
commit f43bfac43a
2 changed files with 4 additions and 13 deletions
+3 -8
View File
@@ -202,15 +202,10 @@ void ScoreKeeper5th::AddScore( TapNoteScore score )
// What does this do? "Don't use a multiplier if
// the player has failed"?
// Also, why does this switch on score again instead
// of just adding p? -Chris
if( GAMESTATE->m_CurStageStats.bFailed[m_PlayerNumber] )
switch( score )
{
case TNS_MARVELOUS: m_iScore += 10; break;
case TNS_PERFECT: m_iScore += MarvelousEnabled? 9:10; break;
case TNS_GREAT: m_iScore += 5; break;
}
{
m_iScore += p;
}
else
{
m_iScore += GetScore(p, B, sum, m_iTapNotesHit);