From 0fda8efa0383a0970144112dea9a167e39191d0e Mon Sep 17 00:00:00 2001 From: ehofman Date: Wed, 19 May 2004 08:12:21 +0000 Subject: [PATCH] Reduce the update delay from 500 ms to 100 ms. --- src/AIModel/AIAircraft.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AIModel/AIAircraft.cxx b/src/AIModel/AIAircraft.cxx index 8e773d481..61045327f 100644 --- a/src/AIModel/AIAircraft.cxx +++ b/src/AIModel/AIAircraft.cxx @@ -375,11 +375,11 @@ void FGAIAircraft::ProcessFlightPlan( double dt ) { return; } // end of initialization - // let's only process the flight plan every 500 ms. - if (dt_count < 0.5) { + // let's only process the flight plan every 100 ms. + if (dt_count < 0.1) { return; } else { - while (dt_count > 0.5) + while (dt_count > 0.1) dt_count -= dt; // check to see if we've reached the lead point for our next turn