1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-26 01:35:35 +03:00

Fixed OSD symbols for velocities and fixed velocity calculation in the stats.

This commit is contained in:
Florian Huber 2017-05-15 21:53:07 -04:00
parent 56d9f71da6
commit 71405f5651
2 changed files with 3 additions and 3 deletions

View file

@ -772,7 +772,7 @@ static void osdUpdateStats(void)
if (feature(FEATURE_GPS))
{
value = gpsSol.groundSpeed * 36 / 1000;
value = gpsSol.groundSpeed;
if (stats.max_speed < value)
stats.max_speed = value;