From d233040ce15dc28ff3dd76fe9e0571229617ffa7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 26 Apr 2005 20:21:13 +0000 Subject: [PATCH] fix warning --- 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 507b202e5b..dca83f0154 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -406,7 +406,7 @@ void Player::Update( float fDeltaTime ) const TapNoteScore tns = tn.result.tns; const bool bSteppedOnTapNote = tns != TNS_NONE && tns != TNS_MISS; // did they step on the start of this hold? - bool bIsHoldingButton; + bool bIsHoldingButton = false; if( m_pPlayerState->m_PlayerController != PC_HUMAN ) { // TODO: Make the CPU miss sometimes.