From: James Turner Date: Wed, 16 Jun 2010 16:46:41 +0000 (+0100) Subject: Fix ordering of aircraft-model updates against flight model. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f9ec605ffb916ba212792931a91cf415127ab521;p=flightgear.git Fix ordering of aircraft-model updates against flight model. --- 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...