Hello,

wondering why my A4 stay steady on the ground with gear retracted, I
made a little debug session to find that 'remaining' value in 
FGInterface::_calc_multiloop had a very huge value (about 1e+66)
that result in 0 iterations made by the FDM.

Applying the patch below solve the problem.

Cheers,

-Fred


C:\FlightGear\cvs\FlightGear\src\FDM>cvs -nq diff -u flight.cxx
Index: flight.cxx
===================================================================
RCS file: /var/cvs/FlightGear-0.7/FlightGear/src/FDM/flight.cxx,v
retrieving revision 1.60
diff -u -r1.60 flight.cxx
--- flight.cxx  17 May 2002 15:25:28 -0000      1.60
+++ flight.cxx  25 Jun 2002 06:28:49 -0000
@@ -53,6 +53,7 @@
 // Constructor
 FGInterface::FGInterface() {
     _setup();
+    remainder = 0;
 }

 FGInterface::FGInterface( double dt ) {



_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to