1
0
Fork 0

Fix ordering of aircraft-model updates against flight model.

This commit is contained in:
James Turner 2010-06-16 17:46:41 +01:00 committed by James Turner
parent 4be1661305
commit f9ec605ffb

View file

@ -352,8 +352,9 @@ 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.