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@gmail.com>2013-04-26 17:51:27 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:53:56 +0300
commit040d6c1253f475c7f9a5063dd17d5a9ccb7333fb (patch)
tree1d9317b701f090b420d173c7a442f400e6d1bfa7 /indexer/drawing_rules.cpp
parent753b0bf20309931b75776e335fdc2927d892bc56 (diff)
[map] unlocked styling for z19
Diffstat (limited to 'indexer/drawing_rules.cpp')
-rw-r--r--indexer/drawing_rules.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/drawing_rules.cpp b/indexer/drawing_rules.cpp
index 101bd9c912..8eb9adc53f 100644
--- a/indexer/drawing_rules.cpp
+++ b/indexer/drawing_rules.cpp
@@ -126,7 +126,7 @@ void RulesHolder::Clean()
size_t RulesHolder::AddRule(int scale, rule_type_t type, BaseRule * p)
{
- ASSERT ( 0 <= scale && scale <= scales::GetUpperScale(), (scale) );
+ ASSERT ( 0 <= scale && scale <= scales::GetUpperStyleScale(), (scale) );
ASSERT ( 0 <= type && type < count_of_rules, () );
m_container[type].push_back(p);