From 18b2464b4eb292a9211386d01089fe9e8cf23a72 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 7 May 2003 16:00:31 +0000 Subject: [PATCH] When reseting the aircraft position, the system looks at a number of the requested parameters to determine if this should be an on-ground vs. in-air start. The problem was that we never defaulted the value to anything so if we didn't match an in-air condition, we simply inherited whatever value was there from before. --- src/Main/fg_init.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index 8f122720a..81be29a5b 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -979,6 +979,10 @@ fgInitNav () bool fgInitPosition() { bool set_pos = false; + // Default to starting on the ground unless one of the other + // conditions implies an in-air start. + fgSetBool("/sim/presets/onground", true); + // If glideslope is specified, then calculate offset-distance or // altitude relative to glide slope if either of those was not // specified. -- 2.39.5