Skip to content

Commit

Permalink
fix lift notes not being tallied into totalpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Jan 10, 2017
1 parent 9bbedaa commit 0785474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NoteData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 0785474

Please sign in to comment.