fix ActorScroller not updating actors

It could also wrap each actor in a frame, so actors can tween,
but that can wait until there's a need.
This commit is contained in:
Glenn Maynard
2003-11-23 23:40:57 +00:00
parent b5aa3a9db5
commit 55189dca98
+2
View File
@@ -76,6 +76,8 @@ void ActorScroller::Update( float fDeltaTime )
fX = roundf( fX );
fY = roundf( fY );
m_vActors[i]->SetXY( fX, fY );
m_vActors[i]->Update( fDeltaTime );
}
}