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

Remove devel code

This commit is contained in:
Martin Tůma 2020-02-15 21:51:47 +01:00
parent c9b3c2eedd
commit e4288ee95c

View File

@ -57,7 +57,7 @@ bool TREFile::init(bool baseMap)
if (!(seek(hdl, _gmpOffset + 0x15) && readInt24(hdl, north)
&& readInt24(hdl, east) && readInt24(hdl, south) && readInt24(hdl, west)))
return false;
_bounds = RectC(Coordinates(toWGS24(west), qMin(toWGS24(north), 85.11)),
_bounds = RectC(Coordinates(toWGS24(west), toWGS24(north)),
Coordinates(RB(east), toWGS24(south)));
Q_ASSERT(_bounds.left() <= _bounds.right());