1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-31 09:05:14 +01:00

Fixed broken tile bounds

This commit is contained in:
Martin Tůma 2020-10-27 20:52:29 +01:00
parent f9abf21e6d
commit 9bd79a4104

View File

@ -193,6 +193,7 @@ bool TREFile::load(int idx)
width &= 0x7FFF;
width = LS(width, 24 - level.bits);
height &= 0x7FFF;
height = LS(height, 24 - level.bits);
s = new SubDiv(offset, lon, lat, level.level, level.bits, objects);