diff --git a/src/ui/HSIDisplay.cc b/src/ui/HSIDisplay.cc index 9edb21991c45806d62e984967c92947c2ae64046..3fc426aa14565b994fc4e068e23d7dad33f6374f 100644 --- a/src/ui/HSIDisplay.cc +++ b/src/ui/HSIDisplay.cc @@ -1106,8 +1106,8 @@ void HSIDisplay::drawGPS(QPainter &painter) i.next(); GPSSatellite* sat = i.value(); - // Check if update is not older than 5 seconds, else delete satellite - if (sat->lastUpdate + 1000000 < currTime) { + // Check if update is not older than 10 seconds, else delete satellite + if (sat->lastUpdate + 10000000 < currTime) { // Delete and go to next satellite gpsSatellites.remove(i.key()); if (i.hasNext()) {