more work on 1.90

This commit is contained in:
Chris Danford
2002-04-01 02:21:01 +00:00
parent 3a73bfc354
commit 8d8fb0a676
2 changed files with 25 additions and 9 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ GrayArrow::GrayArrow()
void GrayArrow::SetBeat( const float fSongBeat )
{
SetState( fmod(fSongBeat,1) * Sprite::GetNumStates() );
SetState( (int)( fmod(fSongBeat,1) * Sprite::GetNumStates() ) );
}
void GrayArrow::Step()