Skip to content
Snippets Groups Projects
Commit c3b33330 authored by tpylak's avatar tpylak
Browse files

bugfix: image from the last tile was always considered invalid

This is pretty serious bug from the user point of view.

SVN: 3821
parent cbb57dc1
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,7 @@ public final class Location ...@@ -47,6 +47,7 @@ public final class Location
/** /**
* For given <var>position</var> in given <code>geometry</code> returns corresponding <code>Location</code>. * For given <var>position</var> in given <code>geometry</code> returns corresponding <code>Location</code>.
* Position should be greater than 0.
* *
* @return <code>null</code> if position is out of range. * @return <code>null</code> if position is out of range.
*/ */
...@@ -56,7 +57,7 @@ public final class Location ...@@ -56,7 +57,7 @@ public final class Location
final int columns = geometry.getColumns(); final int columns = geometry.getColumns();
final int max = columns * geometry.getRows(); final int max = columns * geometry.getRows();
// Given position is within the range. // Given position is within the range.
if (position > 0 && position < max) if (position > 0 && position <= max)
{ {
final int modulo = position % columns; final int modulo = position % columns;
final int x = modulo == 0 ? columns : modulo; final int x = modulo == 0 ? columns : modulo;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment