From 700a8c7837d7fc1af05c21164bfbd1ab204708cc Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Thu, 12 Apr 2012 11:40:34 -0500 Subject: [PATCH] what the flying f... --- src/ScoreKeeperNormal.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/ScoreKeeperNormal.cpp b/src/ScoreKeeperNormal.cpp index b9bcc3e85f..4a6cd316a1 100644 --- a/src/ScoreKeeperNormal.cpp +++ b/src/ScoreKeeperNormal.cpp @@ -270,13 +270,10 @@ void ScoreKeeperNormal::AddTapScore( TapNoteScore tns ) void ScoreKeeperNormal::AddHoldScore( HoldNoteScore hns ) { - if( GAMESTATE->IsCourseMode() ) - { - if( hns == HNS_Held ) - AddScoreInternal( TNS_W1 ); - else if ( hns == HNS_LetGo ) - AddScoreInternal( TNS_W4 ); // required for subtractive score display to work properly. - } + if( hns == HNS_Held ) + AddScoreInternal( TNS_W1 ); + else if ( hns == HNS_LetGo ) + AddScoreInternal( TNS_W4 ); // required for subtractive score display to work properly. } void ScoreKeeperNormal::AddTapRowScore( TapNoteScore score, const NoteData &nd, int iRow )