1
0
Fork 0

Remove dead variables.

Modified Files:
	./src/Model/acmodel.cxx ./src/Model/acmodel.hxx
This commit is contained in:
frohlich 2009-06-11 09:19:32 +00:00 committed by Tim Moore
parent 86d11cffce
commit 173af5d55f
2 changed files with 2 additions and 7 deletions

View file

@ -33,9 +33,7 @@
////////////////////////////////////////////////////////////////////////
FGAircraftModel::FGAircraftModel ()
: _aircraft(0),
_nearplane(0.10f),
_farplane(1000.0f)
: _aircraft(0)
{
}

View file

@ -1,4 +1,4 @@
#// model.hxx - manage a 3D aircraft model.
// model.hxx - manage a 3D aircraft model.
// Written by David Megginson, started 2002.
//
// This file is in the Public Domain, and comes with no warranty.
@ -43,9 +43,6 @@ public:
private:
SGModelPlacement * _aircraft;
float _nearplane;
float _farplane;
};
#endif // __ACMODEL_HXX