summaryrefslogtreecommitdiff
path: root/platform/glfw/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/glfw/main.cpp')
-rw-r--r--platform/glfw/main.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/platform/glfw/main.cpp b/platform/glfw/main.cpp
index 784e002a65..240cbf5f49 100644
--- a/platform/glfw/main.cpp
+++ b/platform/glfw/main.cpp
@@ -180,10 +180,11 @@ int main(int argc, char *argv[]) {
});
// Database file source.
- auto databaseFileSource = std::static_pointer_cast<mbgl::DatabaseFileSource>(std::shared_ptr<mbgl::FileSource>(
- mbgl::FileSourceManager::get()->getFileSource(mbgl::FileSourceType::Database, resourceOptions)));
- view->setResetCacheCallback([databaseFileSource]() {
- databaseFileSource->resetDatabase([](std::exception_ptr ex) {
+ std::shared_ptr<mbgl::JointDatabaseStorage> database =
+ mbgl::FileSourceManager::get()->getDatabaseStorage(resourceOptions);
+ assert(database);
+ view->setResetCacheCallback([database]() {
+ database->resetDatabase([](std::exception_ptr ex) {
if (ex) {
mbgl::Log::Error(mbgl::Event::Database, "Failed to reset cache:: %s", mbgl::util::toString(ex).c_str());
}