summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/style.cpp')
-rw-r--r--src/mbgl/style/style.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/style.cpp b/src/mbgl/style/style.cpp
index 783c850097..b70b7ee3be 100644
--- a/src/mbgl/style/style.cpp
+++ b/src/mbgl/style/style.cpp
@@ -8,8 +8,8 @@
namespace mbgl {
namespace style {
-Style::Style(FileSource& fileSource, float pixelRatio)
- : impl(std::make_unique<Impl>(fileSource, pixelRatio)) {
+Style::Style(float pixelRatio, const FileSourceOptions& fileSourceOptions)
+ : impl(std::make_unique<Impl>(pixelRatio, fileSourceOptions)) {
}
Style::~Style() = default;