]> git.mxchange.org Git - flightgear.git/commitdiff
Change fuel selector data type from bool to int.
authorcurt <curt>
Thu, 3 Mar 2005 23:14:57 +0000 (23:14 +0000)
committercurt <curt>
Thu, 3 Mar 2005 23:14:57 +0000 (23:14 +0000)
src/Network/net_ctrls.hxx

index 6bb9461b066b9bc62f954a26e27f01710a14ca41..1036b916e1b91eb6793e4eff9ad90361df10ac67 100644 (file)
@@ -17,7 +17,7 @@
 # error This library requires C++
 #endif                                   
 
-const int FG_NET_CTRLS_VERSION = 24;
+const int FG_NET_CTRLS_VERSION = 25;
 
 
 // Define a structure containing the control parameters
@@ -69,7 +69,7 @@ public:
 
     // Fuel management
     int num_tanks;                       // number of valid tanks
-    bool fuel_selector[FG_MAX_TANKS];    // false = off, true = on
+    int fuel_selector[FG_MAX_TANKS];    // false = off, true = on
 
     // Brake controls
     double brake_left;