]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/cockpit.hxx
Fix two problems:
[flightgear.git] / src / Cockpit / cockpit.hxx
index fce2a0a297824c5ae9bd058970795ae7d22c58bf..7510574ada47a15625f263b86914d6591c303f3a 100644 (file)
 class fg_Cockpit  {
   private:
     int  Code;
-    int  Status;
+    int  cockpitStatus;
+    SGPropertyNode * hud_status;
 
   public:
-    fg_Cockpit   () : Code(1), Status(0) {};
+    fg_Cockpit   () : Code(1), cockpitStatus(0) {};
     int   code  ( void ) { return Code; }
-    int   status( void ) { return Status; }
+    int   status( void ) { return cockpitStatus; }
 };