From fc4b2497eac7d4d8485caaf5683c70c931d0c4bc Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 4 Apr 2001 13:50:21 +0000 Subject: [PATCH] --- source/enemy/nsjfish.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/enemy/nsjfish.cpp b/source/enemy/nsjfish.cpp index 17305b8c0..949c8ac64 100644 --- a/source/enemy/nsjfish.cpp +++ b/source/enemy/nsjfish.cpp @@ -48,7 +48,7 @@ void CNpcEnemy::processSmallJellyfishMovementModifier( int _frames, s32 distX, s dataPoint /= GameState::getOneSecondInFrames(); } - m_frame = ( m_movementTimer * m_actorGfx->getFrameCount(m_animNo) ) / GameState::getOneSecondInFrames(); + m_frame = ( m_movementTimer * ( m_actorGfx->getFrameCount(m_animNo) - 1 ) ) / GameState::getOneSecondInFrames(); s32 resistance; s32 absVelocity = abs( m_velocity );