From 038a9fda8c64c8bf582080c1b534ea1f9c3f7274 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 19 Feb 2011 01:39:45 -0500 Subject: [PATCH] Simplify thanks to TaroNuke. --- src/Player.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Player.cpp b/src/Player.cpp index d9caa5f183..0be0925070 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -1255,13 +1255,13 @@ void Player::UpdateHoldNotes( int iSongRow, float fDeltaTime, vectorTrace("initiated note and let go :("); } } - else + else if( SCORE_MISSED_HOLDS_AND_ROLLS ) { - //LOG->Trace("did not initiate note"); - if( !bInitiatedNote && !SCORE_MISSED_HOLDS_AND_ROLLS ) - hns = HNS_None; - else - hns = HNS_LetGo; + hns = HNS_LetGo; + } + else + { + hns = HNS_None; } }