[sm130score] Restore old Course scoring for now.

This can be lua-ized later.
This commit is contained in:
Jason Felds
2011-04-12 02:29:57 -04:00
parent 0689d897ea
commit 063208eea8
3 changed files with 11 additions and 2 deletions
+7
View File
@@ -263,6 +263,13 @@ 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.
}
}
void ScoreKeeperNormal::AddTapRowScore( TapNoteScore score, const NoteData &nd, int iRow )