mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
fixed an unitialised variable
This commit is contained in:
parent
705e11becb
commit
4191bb32d1
@ -15,7 +15,7 @@ namespace MWWorld
|
|||||||
{
|
{
|
||||||
|
|
||||||
PhysicsSystem::PhysicsSystem(OEngine::Render::OgreRenderer &_rend , OEngine::Physic::PhysicEngine* physEng) :
|
PhysicsSystem::PhysicsSystem(OEngine::Render::OgreRenderer &_rend , OEngine::Physic::PhysicEngine* physEng) :
|
||||||
mRender(_rend), mEngine(physEng)
|
mRender(_rend), mEngine(physEng), mFreeFly (true)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -38,6 +38,8 @@ namespace MWWorld
|
|||||||
OEngine::Physic::PhysicEngine* mEngine;
|
OEngine::Physic::PhysicEngine* mEngine;
|
||||||
bool mFreeFly;
|
bool mFreeFly;
|
||||||
|
|
||||||
|
PhysicsSystem (const PhysicsSystem&);
|
||||||
|
PhysicsSystem& operator= (const PhysicsSystem&);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user