From dffd6052b9b6970f6d58511b31aa34d8a0c790d3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 26 Jan 2003 04:58:49 +0000 Subject: [PATCH] silly fix --- stepmania/src/GrayArrow.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/stepmania/src/GrayArrow.cpp b/stepmania/src/GrayArrow.cpp index de62813fd2..1f881a3eb2 100644 --- a/stepmania/src/GrayArrow.cpp +++ b/stepmania/src/GrayArrow.cpp @@ -41,13 +41,12 @@ void GrayArrow::Update( float fDeltaTime ) /* XXX: get rid of this once we update the note skins */ int IdleState = (GetNumStates() == 3)? 0: 1; - int OffState = (GetNumStates() == 3)? 1: 0; - int OnState = (GetNumStates() == 3)? 2: 1; + int OnState = (GetNumStates() == 3)? 1: 0; + int OffState = (GetNumStates() == 3)? 2: 1; if( !GAMESTATE->m_bPastHereWeGo ) { SetState( IdleState ); - SetState( 0 ); return; } @@ -68,7 +67,7 @@ void GrayArrow::Update( float fDeltaTime ) cur_beat -= flash_offset; float fPercentIntoBeat = fmodf(cur_beat, 1); - SetState( (fPercentIntoBeat