]> git.mxchange.org Git - flightgear.git/commitdiff
Pass through ground speed for hud ETA calculation.
authorcurt <curt>
Sun, 10 Oct 1999 16:48:21 +0000 (16:48 +0000)
committercurt <curt>
Sun, 10 Oct 1999 16:48:21 +0000 (16:48 +0000)
src/FDM/LaRCsim.cxx
src/FDM/flight.hxx

index 7602bb5d879f55ab171e7219d861c597ad51844d..f731e6d70eddba0e4326424c3b2ff39c550feec7 100644 (file)
@@ -313,7 +313,7 @@ int fgLaRCsim_2_FGInterface (FGInterface& f) {
     // f.set_V_true_kts( V_true_kts );
     // f.set_V_rel_ground( V_rel_ground );
     // f.set_V_inertial( V_inertial );
-    // f.set_V_ground_speed( V_ground_speed );
+    f.set_V_ground_speed( V_ground_speed );
     // f.set_V_equiv( V_equiv );
     f.set_V_equiv_kts( V_equiv_kts );
     // f.set_V_calibrated( V_calibrated );
index 529a320ca8f237ee52dcd0fedb8e73d61c6d905d..204f657998da086fabea8fc2dfe1c58abca9f677 100644 (file)
@@ -473,8 +473,8 @@ public:
     // inline double get_V_inertial() const { return v_inertial; }
     // inline void set_V_inertial(double v) { v_inertial = v; }
 
-    // inline double get_V_ground_speed() const { return v_ground_speed; }
-    // inline void set_V_ground_speed( double v) { v_ground_speed = v; }
+    inline double get_V_ground_speed() const { return v_ground_speed; }
+    inline void set_V_ground_speed( double v) { v_ground_speed = v; }
 
     // inline double get_V_equiv() const { return v_equiv; }
     // inline void set_V_equiv( double v ) { v_equiv = v; }