diff --git a/OsmAnd/src/net/osmand/plus/srtmplugin/HillshadeLayer.java b/OsmAnd/src/net/osmand/plus/srtmplugin/HillshadeLayer.java index 4859c79ca4..c95fad6dca 100644 --- a/OsmAnd/src/net/osmand/plus/srtmplugin/HillshadeLayer.java +++ b/OsmAnd/src/net/osmand/plus/srtmplugin/HillshadeLayer.java @@ -159,7 +159,7 @@ public class HillshadeLayer extends MapTileLayer { List ts = getTileSource(x, y, zoom); for (String t : ts) { SQLiteTileSource sqLiteTileSource = resources.get(t); - if(sqLiteTileSource.exists(x, y, zoom, true)) { + if(sqLiteTileSource.exists(x, y, zoom, false)) { return sqLiteTileSource.getImage(x, y, zoom); } }