Removed unused variable.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5043 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2010-03-22 11:00:47 +00:00
parent a73cf90dca
commit 390a7b39b6
2 changed files with 0 additions and 3 deletions

View File

@ -30,7 +30,6 @@ Moveable::Moveable()
{
m_body = 0;
m_motion_state = 0;
m_first_time = true;
m_mesh = NULL;
m_node = NULL;
} // Moveable
@ -109,7 +108,6 @@ void Moveable::update(float dt)
m_roll = atan2(up.getX(), up.getY());
updateGraphics(Vec3(0,0,0), btQuaternion(0, 0, 0, 1));
m_first_time = false ;
} // update
//-----------------------------------------------------------------------------

View File

@ -55,7 +55,6 @@ protected:
UserPointer m_user_pointer;
scene::IMesh *m_mesh;
scene::ISceneNode *m_node;
int m_first_time ;
btRigidBody *m_body;
KartMotionState *m_motion_state;