summaryrefslogtreecommitdiff
path: root/include/mbgl/util/default_styles.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/default_styles.hpp')
-rw-r--r--include/mbgl/util/default_styles.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/mbgl/util/default_styles.hpp b/include/mbgl/util/default_styles.hpp
index 3f5b6bd312..2043dd3f5b 100644
--- a/include/mbgl/util/default_styles.hpp
+++ b/include/mbgl/util/default_styles.hpp
@@ -14,17 +14,19 @@ struct DefaultStyle {
};
extern const DefaultStyle streets;
-extern const DefaultStyle emerald;
+extern const DefaultStyle outdoors;
extern const DefaultStyle light;
extern const DefaultStyle dark;
extern const DefaultStyle satellite;
extern const DefaultStyle hybrid;
const DefaultStyle orderedStyles[] = {
- streets, emerald, light, dark, satellite, hybrid,
+ streets, outdoors, light, dark, satellite, hybrid,
};
const size_t numOrderedStyles = sizeof(orderedStyles) / sizeof(DefaultStyle);
+static const unsigned currentVersion = 9;
+
} // end namespace default_styles
} // end namespace util
} // end namespace mbgl