AP_HAL_SITL: removed terrain home correction

This commit is contained in:
Andrew Tridgell 2022-01-31 15:35:06 +11:00
parent 6dc843b341
commit 7a9ac498cf
1 changed files with 1 additions and 1 deletions

View File

@ -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, false)) {
_terrain->height_amsl(location, terrain_height_amsl)) {
_sitl->height_agl = _sitl->state.altitude - terrain_height_amsl;
return;
}