Skip to content

Commit

Permalink
Allow hitting hold taps late
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram authored Feb 9, 2019
1 parent 033452c commit c0e1a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2223,7 +2223,7 @@ Player::Step(int col,
}
// Fall through to default.
default:
if (lastHoldHeadSeconds - fMusicSeconds > 0.0f)
if (pTN->type != TapNoteType_HoldHead && lastHoldHeadSeconds - fMusicSeconds > 0.0f)
break;
if ((pTN->type == TapNoteType_Lift) == bRelease) {
if (fSecondsFromExact <= GetWindowSeconds(TW_W1))
Expand Down

0 comments on commit c0e1a48

Please sign in to comment.