From 0785474a34a784492dc9bff39eed14c0f3068684 Mon Sep 17 00:00:00 2001 From: MinaciousGrace Date: Tue, 10 Jan 2017 02:58:40 -0500 Subject: [PATCH] fix lift notes not being tallied into totalpoints --- src/NoteData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NoteData.cpp b/src/NoteData.cpp index 014c6e8450..6bb5574184 100644 --- a/src/NoteData.cpp +++ b/src/NoteData.cpp @@ -179,7 +179,7 @@ int NoteData::WifeTotalScoreCalc(TimingData *td, int iStartIndex, int iEndIndex) for (int t = 0; t < GetNumTracks(); t++) { TapNote tn = GetTapNote(t, r); - if (tn.type != TapNoteType_Empty && tn.type != TapNoteType_Mine && tn.type != TapNoteType_Fake && tn.type != TapNoteType_Lift && td->IsJudgableAtRow(r)) { + if (tn.type != TapNoteType_Empty && tn.type != TapNoteType_Mine && tn.type != TapNoteType_Fake && td->IsJudgableAtRow(r)) { taps++; break; }