From 41d4db5e6f0c1cfc0f2e70764b890364bd8695dc Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 5 Sep 2002 01:16:57 +0000 Subject: [PATCH] Fix assert fail. (Found this one by letting autoplay go for a while with the debug console paused; might normally happen in a fast song after losing a bunch of frames.) --- stepmania/src/GrayArrow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/GrayArrow.cpp b/stepmania/src/GrayArrow.cpp index 83951af6e2..a683797959 100644 --- a/stepmania/src/GrayArrow.cpp +++ b/stepmania/src/GrayArrow.cpp @@ -47,6 +47,7 @@ void GrayArrow::Update( float fDeltaTime ) void GrayArrow::Step() { SetZoom( g_fStepZoom ); + StopTweening(); BeginTweening( g_fStepSeconds ); SetTweenZoom( 1 ); }