mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-12-04 08:19:10 +01:00
Compare commits
2 Commits
681f6c5b09
...
490052bc6c
Author | SHA1 | Date | |
---|---|---|---|
490052bc6c | |||
6cba68f0d1 |
@ -4,7 +4,7 @@
|
|||||||
#include "graphicsscene.h"
|
#include "graphicsscene.h"
|
||||||
|
|
||||||
|
|
||||||
bool GraphicsItem::_useStyle = true;
|
bool GraphicsItem::_useStyle = false;
|
||||||
|
|
||||||
/* Standard GraphicsScene::items() is not pixel accurate, so we use the
|
/* Standard GraphicsScene::items() is not pixel accurate, so we use the
|
||||||
following function which has the same logic as used in the original
|
following function which has the same logic as used in the original
|
||||||
|
@ -221,7 +221,7 @@ bool GHPParser::readF0(const char *chunk, const Header &hdr, int &time,
|
|||||||
quint16 speed = u16(chunk + 10);
|
quint16 speed = u16(chunk + 10);
|
||||||
quint8 hr = chunk[12];
|
quint8 hr = chunk[12];
|
||||||
quint8 fia = chunk[13];
|
quint8 fia = chunk[13];
|
||||||
quint8 ms = chunk[16];
|
qint32 ms = s32(chunk + 16);
|
||||||
|
|
||||||
if (fia == 3) {
|
if (fia == 3) {
|
||||||
Trackpoint t(Coordinates(lon / 1000000.0, lat / 1000000.0));
|
Trackpoint t(Coordinates(lon / 1000000.0, lat / 1000000.0));
|
||||||
|
Loading…
Reference in New Issue
Block a user