Fix problem with coordinate offsets due to negative coordinate walk on

kzedmaps
This commit is contained in:
Mike Primm 2011-06-22 17:24:12 -05:00
parent 8e102446fe
commit 9db23444db
2 changed files with 16 additions and 8 deletions

View file

@ -335,8 +335,8 @@ public class KzedMap extends MapType {
}
return s;
}
public int baseZoomFileStepSize() { return zTileWidth; }
/* Return negative to flag negative X walk */
public int baseZoomFileStepSize() { return -zTileWidth; }
private static final int[] stepseq = { 0, 2, 1, 3 };