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 18:53:34 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:02:22 +0300
commitc2df36a37bfc8122b5480b1e057539e871065648 (patch)
tree378fba2b37acc36c3af9475de4a9f67c1d3ea181 /indexer/map_style_reader.cpp
parent36806ccf83d9c741e52900b6bee061546d343969 (diff)
Added new style support in core code
Diffstat (limited to 'indexer/map_style_reader.cpp')
-rw-r--r--indexer/map_style_reader.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indexer/map_style_reader.cpp b/indexer/map_style_reader.cpp
index f3972d6c06..75860eb5f5 100644
--- a/indexer/map_style_reader.cpp
+++ b/indexer/map_style_reader.cpp
@@ -22,6 +22,8 @@ string GetDrawingRulesFile(MapStyle mapStyle)
return "drules_proto.bin";
case MapStyleDark:
return "drules_proto_dark.bin";
+ case MapStyleClear:
+ return "drules_proto_clear.bin";
default:
LOG(LWARNING, ("Unknown map style", mapStyle));
return string();
@@ -36,6 +38,8 @@ string GetStyleSuffix(MapStyle mapStyle)
return "";
case MapStyleDark:
return "_dark";
+ case MapStyleClear:
+ return "_clear";
default:
LOG(LWARNING, ("Unknown map style", mapStyle));
return string();