Changeset 4516 in josm for trunk/src/org
- Timestamp:
- 2011-10-14T12:51:11+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/bbox/TileSelectionBBoxChooser.java
r4310 r4516 540 540 return false; 541 541 } 542 if (x < 0 || x >= Math.pow(2, zoom -1)) return false;542 if (x < 0 || x >= Math.pow(2, zoom)) return false; 543 543 int y; 544 544 try { … … 547 547 return false; 548 548 } 549 if (y < 0 || y >= Math.pow(2, zoom -1)) return false;549 if (y < 0 || y >= Math.pow(2, zoom)) return false; 550 550 551 551 tileBounds = new TileBounds(new Point(x,y), new Point(x,y), zoom);
Note:
See TracChangeset
for help on using the changeset viewer.