From 4200c6051ea86e9c9b3b7d61c12cdda635782400 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 10 Jun 2003 05:13:31 +0000 Subject: [PATCH] fix warning --- stepmania/src/NoteDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NoteDisplay.cpp b/stepmania/src/NoteDisplay.cpp index 7d7579f1e8..1c95f16b55 100644 --- a/stepmania/src/NoteDisplay.cpp +++ b/stepmania/src/NoteDisplay.cpp @@ -399,7 +399,7 @@ void NoteDisplay::DrawHold( const HoldNote& hn, const bool bActive, const float const float fYHead = bReverse ? fEndYPos : fStartYPos; // the center of the head const float fYTail = bReverse ? fStartYPos : fEndYPos; // the center the tail - const bool bWavy = GAMESTATE->m_PlayerOptions[m_PlayerNumber].m_fEffects[PlayerOptions::EFFECT_DRUNK] > 0; +// const bool bWavy = GAMESTATE->m_PlayerOptions[m_PlayerNumber].m_fEffects[PlayerOptions::EFFECT_DRUNK] > 0; const int fYStep = 16; //bWavy ? 16 : 128; // use small steps only if wavy const float fColorScale = 1*fLife + (1-fLife)*cache->m_fHoldNGGrayPercent;