Switch from bool to int for more deterministic structure packing.
This commit is contained in:
parent
eef30df0a0
commit
66ff2f15d3
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue