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-08-21 13:33:54 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:02:06 +0300
commit1c69060932b586c4af1e6eab33076b6e9c147af3 (patch)
tree04bb2014209037ba708bb1c6563e3cc678c273f8 /indexer/classificator.cpp
parent1e6bad85f20e8ca2db8e1c2e438bbf7af455d9f6 (diff)
Added Shield class in DrawingRules
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 cdf596a702..e702ef39e9 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -246,9 +246,9 @@ namespace
void add_rule(int ft, iter_t i)
{
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
- { 1, 1, 1, 1, 1, 0, 0 } // farea
+ { 0, 0, 1, 1, 1, 0, 0, 0 }, // fpoint
+ { 1, 0, 0, 0, 0, 1, 0, 1 }, // fline
+ { 1, 1, 1, 1, 1, 0, 0, 0 } // farea
};
if (visible[ft][i->m_type] == 1)