1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 07:23:51 +00:00

fixed an unitialised variable

This commit is contained in:
Marc Zinnschlag 2011-08-22 21:34:51 +02:00
parent 705e11becb
commit 4191bb32d1
2 changed files with 18 additions and 16 deletions

View file

@ -15,7 +15,7 @@ namespace MWWorld
{
PhysicsSystem::PhysicsSystem(OEngine::Render::OgreRenderer &_rend , OEngine::Physic::PhysicEngine* physEng) :
mRender(_rend), mEngine(physEng)
mRender(_rend), mEngine(physEng), mFreeFly (true)
{
}

View file

@ -38,6 +38,8 @@ namespace MWWorld
OEngine::Physic::PhysicEngine* mEngine;
bool mFreeFly;
PhysicsSystem (const PhysicsSystem&);
PhysicsSystem& operator= (const PhysicsSystem&);
};
}