From 66ff2f15d35404640af825c3b49e189c257a2a6a Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 30 Dec 2004 20:49:31 +0000 Subject: [PATCH] Switch from bool to int for more deterministic structure packing. --- src/Network/net_gui.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/net_gui.hxx b/src/Network/net_gui.hxx index acc35606f..80764091b 100644 --- a/src/Network/net_gui.hxx +++ b/src/Network/net_gui.hxx @@ -17,7 +17,7 @@ #endif -const int FG_NET_GUI_VERSION = 4; +const int FG_NET_GUI_VERSION = 5; // Define a structure containing the top level flight dynamics model @@ -64,7 +64,7 @@ public: // Approach float tuned_freq; // currently tuned frequency float nav_radial; // target nav radial - bool in_range; // tuned navaid is in range? + int in_range; // tuned navaid is in range? float dist_nm; // distance to tuned navaid in nautical miles float course_deviation_deg; // degrees off target course float gs_deviation_deg; // degrees off target glide slope -- 2.39.5