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

Fixed speed info parsing

This commit is contained in:
Martin Tůma 2022-01-24 21:29:07 +01:00
parent a815bc762f
commit 6b2bb96be7

View File

@ -431,26 +431,7 @@ static quint32 readImageInfo(DataStream &stream, Waypoint &waypoint,
static int speed(quint8 flags)
{
switch (flags >> 4) {
case 0x8:
return 40;
case 0x9:
return 30;
case 0xA:
return 50;
case 0xB:
return 70;
case 0xC:
return 80;
case 0xD:
return 90;
case 0xE:
return 100;
case 0xF:
return 120;
default:
return 0;
}
return ((flags >> 3) & 0x0F) * 10;
}
static quint32 readCamera(DataStream &stream, QVector<Waypoint> &waypoints,