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 );