From d9b9cee805be576d799e9dd5f341daa8fcc0e80a Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 15 May 2001 21:28:06 +0000 Subject: [PATCH] --- source/projectl/projectl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/projectl/projectl.cpp b/source/projectl/projectl.cpp index b4e747197..cb8c9d3e0 100644 --- a/source/projectl/projectl.cpp +++ b/source/projectl/projectl.cpp @@ -421,7 +421,7 @@ void CPlayerProjectile::init( DVECTOR initPos, s16 initHeading ) m_heading = initHeading; m_initPos = Pos = initPos; - if ( m_heading == 2048 ) + if ( m_heading > 1024 && m_heading < 3072 ) { m_reversed = 1; } @@ -483,12 +483,12 @@ void CPlayerProjectile::think(int _frames) CPlayerProjectileThing::think( _frames ); - m_frame += _frames; + /*m_frame += _frames; if ( m_frame > ( FRM_JELLYFISH1_SWIM6 - FRM_JELLYFISH1_SWIM1 ) ) { m_frame = 0; - } + }*/ switch( m_movementType ) {