Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarafei Praliaskouski <komzpa@mapswith.me>2013-06-05 22:19:46 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:56:14 +0300
commit73f2a3102e280790f682b4cea4574b65b3c85a45 (patch)
tree134202d4ebf4f6463730c908809f197abb172174 /indexer/feature_visibility.cpp
parentc14f25b74510a4de7f255d57b831f20634646821 (diff)
[generator] fix generation with too-high-zoom features
Diffstat (limited to 'indexer/feature_visibility.cpp')
-rw-r--r--indexer/feature_visibility.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp
index fe3213dfe0..6e0066d040 100644
--- a/indexer/feature_visibility.cpp
+++ b/indexer/feature_visibility.cpp
@@ -292,7 +292,7 @@ bool RemoveNoDrawableTypes(vector<uint32_t> & types, FeatureGeoType ft)
int GetMinDrawableScale(FeatureBase const & f)
{
- int const upBound = scales::GetUpperScale();
+ int const upBound = scales::GetUpperStyleScale();
for (int level = 0; level <= upBound; ++level)
if (feature::IsDrawableForIndex(f, level))