diff --git a/src/ui/HSIDisplay.cc b/src/ui/HSIDisplay.cc index 54d2025d1a457adaf4b784ab6474c49db7429b3a..acaf4f019a8e2f4499d6e012eb3a073a5f14813a 100644 --- a/src/ui/HSIDisplay.cc +++ b/src/ui/HSIDisplay.cc @@ -1216,8 +1216,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()) {