1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 14:53:21 +02:00

Added missing speed

This commit is contained in:
Martin Tůma 2019-11-13 19:21:41 +01:00
parent e06d07c176
commit 0d6aeecebb

View File

@ -439,6 +439,8 @@ static int speed(quint8 flags)
return 90; return 90;
case 0xE: case 0xE:
return 100; return 100;
case 0xF:
return 120;
default: default:
return 0; return 0;
} }