Browse Source

HAL_SITL: don't use terrain adjustment

apm_2208
Andrew Tridgell 3 years ago
parent
commit
f8aa4623ef
  1. 2
      libraries/AP_HAL_SITL/SITL_State.cpp

2
libraries/AP_HAL_SITL/SITL_State.cpp

@ -906,7 +906,7 @@ void SITL_State::set_height_agl(void) @@ -906,7 +906,7 @@ void SITL_State::set_height_agl(void)
AP_Terrain *_terrain = AP_Terrain::get_singleton();
if (_terrain != nullptr &&
_terrain->height_amsl(location, terrain_height_amsl)) {
_terrain->height_amsl(location, terrain_height_amsl, false)) {
_sitl->height_agl = _sitl->state.altitude - terrain_height_amsl;
return;
}

Loading…
Cancel
Save