From d34d09587c973f9c974463523fc9d8d3f32f123f Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 26 Sep 2003 01:05:49 +0000 Subject: [PATCH] Do the same with hold notes as with tap notes. --- stepmania/src/ScoreKeeperMAX2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScoreKeeperMAX2.cpp b/stepmania/src/ScoreKeeperMAX2.cpp index 4bb467beca..6011f65e1b 100644 --- a/stepmania/src/ScoreKeeperMAX2.cpp +++ b/stepmania/src/ScoreKeeperMAX2.cpp @@ -509,7 +509,7 @@ int ScoreKeeperMAX2::HoldNoteScoreToDancePoints( HoldNoteScore hns ) case PLAY_MODE_ONI: switch( hns ) { - case HNS_OK: return GAMESTATE->ShowMarvelous()? +3:+2; + case HNS_OK: return GAMESTATE->ShowMarvelous() && PREFSMAN->m_bDancePointsForOni ? +3:+2; case HNS_NG: return +0; } break;