From 6934a337ee144bec9afcf2ee54fdb491c9f07928 Mon Sep 17 00:00:00 2001 From: Chris Gomez Date: Mon, 17 Mar 2003 08:08:29 +0000 Subject: [PATCH] More minor scoring fixes (+1 to combo for jumps in oni mode only; HoldNotes worth 3 in course modes) --- stepmania/src/ScoreKeeperMAX2.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/ScoreKeeperMAX2.cpp b/stepmania/src/ScoreKeeperMAX2.cpp index be400a2965..f4795f7202 100644 --- a/stepmania/src/ScoreKeeperMAX2.cpp +++ b/stepmania/src/ScoreKeeperMAX2.cpp @@ -157,13 +157,13 @@ void ScoreKeeperMAX2::HandleTapRowScore( TapNoteScore scoreOfLastTap, int iNumTa { int iOldCombo = iCurCombo; - if( GAMESTATE->IsCourseMode() ) + if( GAMESTATE->m_PlayMode == PLAY_MODE_ONI ) { switch( scoreOfLastTap ) { case TNS_MARVELOUS: case TNS_PERFECT: - iCurCombo += iNumTapsInRow; + iCurCombo++; break; case TNS_GREAT: // int aosid = 4; @@ -274,7 +274,7 @@ int ScoreKeeperMAX2::HoldNoteScoreToDancePoints( HoldNoteScore hns ) { switch( hns ) { - case HNS_OK: return +6; + case HNS_OK: return GAMESTATE->IsCourseMode() ? +3 : +6; case HNS_NG: return +0; default: ASSERT(0); return 0; }