1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Fixed broken date handling

This commit is contained in:
Martin Tůma 2016-11-21 21:59:21 +01:00
parent 23f5a317d0
commit 4e23df3a66

View File

@ -149,7 +149,7 @@ bool IGCParser::readBRecord(const char *line, int len)
if (time < _time)
_date.addDays(1);
_date = _date.addDays(1);
_time = time;
Trackpoint t(Coordinates(lon, lat));