From 85509fff03d1bf17e0a61fd6f1b44213bc4f0dcf Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 3 Mar 2005 23:14:57 +0000 Subject: [PATCH] Change fuel selector data type from bool to int. --- src/Network/net_ctrls.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/net_ctrls.hxx b/src/Network/net_ctrls.hxx index 6bb9461b0..1036b916e 100644 --- a/src/Network/net_ctrls.hxx +++ b/src/Network/net_ctrls.hxx @@ -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; -- 2.39.5