Fix a m_camera not used warning fix pointed by clang

This commit is contained in:
Loic Blot 2016-05-22 13:31:41 +02:00
parent ce42ff9cf7
commit f64a6259b2
2 changed files with 2 additions and 4 deletions

View File

@ -546,7 +546,6 @@ GenericCAO::GenericCAO(IGameDef *gamedef, ClientEnvironment *env):
//
m_smgr(NULL),
m_irr(NULL),
m_camera(NULL),
m_gamedef(NULL),
m_selection_box(-BS/3.,-BS/3.,-BS/3., BS/3.,BS/3.,BS/3.),
m_meshnode(NULL),

View File

@ -68,7 +68,6 @@ private:
//
scene::ISceneManager *m_smgr;
IrrlichtDevice *m_irr;
Camera* m_camera;
IGameDef *m_gamedef;
aabb3f m_selection_box;
scene::IMeshSceneNode *m_meshnode;