Skip to content

Commit

Permalink
Don't record Misses when interpreting Replay Data
Browse files Browse the repository at this point in the history
during the process of building the internal representation of replay data for playback
  • Loading branch information
poco0317 committed Sep 8, 2019
1 parent 1cdd11e commit de03620
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Etterna/Models/Misc/PlayerAI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ PlayerAI::SetScoreData(HighScore* pHighScore)
// Generate TapReplayResults to put into a vector referenced by the song row
// in a map
for (size_t i = 0; i < replayNoteRowVector.size(); i++) {
if (fabsf(replayOffsetVector[i]) > 0.18f)
continue;
TapReplayResult trr;
trr.row = replayNoteRowVector[i];
trr.offset = replayOffsetVector[i];
Expand Down

0 comments on commit de03620

Please sign in to comment.