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:
authorConstantin Shalnev <c.shalnev@corp.mail.ru>2015-09-16 17:37:25 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:06:07 +0300
commit882ae6199f9430aea03537fffdb04d84f9aec2bb (patch)
tree6cb4dfdaf5afeedfbfc31ead862fb47419c9e0a4 /indexer/classificator.cpp
parentc1ad9d0d7d575ffde586e2de0f2f9ecdcca9823b (diff)
Fixed shields visibility
Diffstat (limited to 'indexer/classificator.cpp')
-rw-r--r--indexer/classificator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index e702ef39e9..aa2ae74c2b 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -305,9 +305,9 @@ bool ClassifObject::IsDrawableLike(feature::EGeomType ft) const
return false;
static const int visible[3][drule::count_of_rules] = {
- {0, 0, 1, 1, 1, 0, 0}, // fpoint
- {1, 0, 0, 0, 0, 1, 0}, // fline
- {0, 1, 0, 0, 0, 0, 0} // farea (!!! key difference with GetSuitable !!!)
+ {0, 0, 1, 1, 1, 0, 0, 0}, // fpoint
+ {1, 0, 0, 0, 0, 1, 0, 1}, // fline
+ {0, 1, 0, 0, 0, 0, 0, 0} // farea (!!! key difference with GetSuitable !!!)
};
for (size_t i = 0; i < m_drawRule.size(); ++i)