From f9ec605ffb916ba212792931a91cf415127ab521 Mon Sep 17 00:00:00 2001 From: James Turner Date: Wed, 16 Jun 2010 17:46:41 +0100 Subject: [PATCH] Fix ordering of aircraft-model updates against flight model. --- src/Main/main.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 4ffb1cd03..d69478e55 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -352,9 +352,10 @@ static void fgMainLoop( void ) { if (fgGetBool("/sim/ai-traffic/enabled")) globals->get_AI_mgr()->update(delta_time_sec); - globals->get_aircraft_model()->update(delta_time_sec); + globals->get_subsystem_mgr()->update(delta_time_sec); - + globals->get_aircraft_model()->update(delta_time_sec); + // // Tile Manager updates - see if we need to load any new scenery tiles. // this code ties together the fdm, viewer and scenery classes... -- 2.39.5