From b75a9716d59c784b4274ff4829f97ee5549be2cf Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 30 Jan 2003 05:54:15 +0000 Subject: [PATCH] make sure we don't OK a hold if the tap wasn't pressed --- 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 19acb3382e..7e43641187 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -275,7 +275,7 @@ void Player::Update( float fDeltaTime ) hns = HNS_NG; // check for OK - if( fSongBeat >= hn.m_fEndBeat && fLife > 0 ) // if this HoldNote is in the past + if( fSongBeat >= hn.m_fEndBeat && bSteppedOnTapNote && fLife > 0 ) // if this HoldNote is in the past { fLife = 1; hns = HNS_OK;