diff options
author | Dane Springmeyer <dane@mapbox.com> | 2014-10-31 16:26:24 -0400 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2014-10-31 17:14:30 -0400 |
commit | b2032103f2fc8567d623a311ff612853d8bce048 (patch) | |
tree | 93357ad2a8ea7a0cef907140a47118c0677a0713 /linux/main.cpp | |
parent | 28bfdbb9e4c28d91f35c2ab2e248693e0e8f0307 (diff) | |
download | qtlocation-mapboxgl-b2032103f2fc8567d623a311ff612853d8bce048.tar.gz |
linux app: fix path to styles
Diffstat (limited to 'linux/main.cpp')
-rw-r--r-- | linux/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/main.cpp b/linux/main.cpp index fa4a495837..7b96a349e1 100644 --- a/linux/main.cpp +++ b/linux/main.cpp @@ -65,7 +65,7 @@ int main(int argc, char *argv[]) { } // Load style - const std::string style = std::string("file://") + uv::cwd() + std::string("/styles/bright-v5.json"); + const std::string style = std::string("file://") + uv::cwd() + std::string("/styles/styles/bright-v5.json"); map.setStyleURL(style); int ret = view->run(); |