Skip to content

Commit

Permalink
The silliest bug that made the average accuracy indicator not actuall…
Browse files Browse the repository at this point in the history
…y be the average.
  • Loading branch information
Biendeo committed Mar 28, 2021
1 parent bf4e13c commit 9d7426a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions AccuracyIndicator/AccuracyIndicator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ internal void HitNote(NoteWrapper note) {
} else {
hitAccuracy = (hitAccuracy * hitNotes + lastNoteHitDifference) / (hitNotes + 1);
}
++hitNotes;
}

internal void MissNote(NoteWrapper note) {
Expand Down

0 comments on commit 9d7426a

Please sign in to comment.