X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Fmain.cxx;h=68535fc6dbebda37d415f8a9094726db0b38b5a6;hb=db89ecfae80aa8d62844e39b7aa5f31b67c25e48;hp=3cb5be5d19e26b6f6c67429a5413099504184a4e;hpb=949fc00815feb26e79e7498c82d4129b6961f2c8;p=flightgear.git diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 3cb5be5d1..68535fc6d 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -76,7 +76,7 @@ #include #include -#include +#include #include #include #include @@ -664,7 +664,7 @@ void fgUpdateTimeDepCalcs(int multi_loop, int remainder) { if ( !t->getPause() ) { // run Autopilot system - fgAPRun(); + current_autopilot->run(); // printf("updating flight model x %d\n", multi_loop); /* fgFDMUpdate( current_options.get_flight_model(), @@ -745,8 +745,8 @@ void fgUpdateTimeDepCalcs(int multi_loop, int remainder) { ephem->update( t, cur_fdm_state->get_Latitude() ); // Update radio stack model - current_radiostack->update( cur_fdm_state->get_Longitude() * RAD_TO_DEG, - cur_fdm_state->get_Latitude() * RAD_TO_DEG, + current_radiostack->update( cur_fdm_state->get_Longitude(), + cur_fdm_state->get_Latitude(), cur_fdm_state->get_Altitude() * FEET_TO_METER ); } @@ -1168,9 +1168,6 @@ void fgReshape( int width, int height ) { // the main loop, so this will now work without seg faulting // the system. current_view.UpdateViewParams(cur_view_fdm); - if ( current_options.get_panel_status() ) { - FGPanel::OurPanel->ReInit(0, 0, 1024, 768); - } } }