From 9360874c9c33e75a82610c180c5b326f25e5c7f1 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 12 Oct 2002 22:21:08 +0000 Subject: [PATCH] Make sure we don't allow "holding" a hold note we missed completely. (There was a short window where you could miss a hold, but still keep it lit.) --- stepmania/src/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index f45cd5a45a..cec87f7c0d 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -227,7 +227,7 @@ void Player::Update( float fDeltaTime ) m_NoteField.m_HoldNotes[i].m_fStartBeat = fSongBeat; // move the start of this Hold } - if( bIsHoldingButton ) + if( bSteppedOnTapNote && bIsHoldingButton ) { // Increase life fLife += fDeltaTime/HOLD_ARROW_NG_TIME;