From e4288ee95c939efa527a9fa782da26bf9dfa8a87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sat, 15 Feb 2020 21:51:47 +0100 Subject: [PATCH] Remove devel code --- src/map/IMG/trefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/IMG/trefile.cpp b/src/map/IMG/trefile.cpp index 66685213..6854cbf0 100644 --- a/src/map/IMG/trefile.cpp +++ b/src/map/IMG/trefile.cpp @@ -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());