1
0
Fork 0

Change fuel selector data type from bool to int.

This commit is contained in:
curt 2005-03-03 23:14:57 +00:00
parent 076aa3b402
commit 85509fff03

View 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;