Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fall back to sqlite3 if no backend set in world.mt
fixes #76
  • Loading branch information
sfan5 committed Apr 23, 2020
1 parent 2ae790c commit 92f6b05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions TileGenerator.cpp
Expand Up @@ -330,11 +330,11 @@ std::set<std::string> TileGenerator::getSupportedBackends()
void TileGenerator::openDb(const std::string &input)
{
std::string backend = m_backend;
if(backend == "") {
std::ifstream ifs((input + "/world.mt").c_str());
if (backend == "") {
std::ifstream ifs(input + "/world.mt");
if(!ifs.good())
throw std::runtime_error("Failed to read world.mt");
backend = read_setting("backend", ifs);
throw std::runtime_error("Failed to open world.mt");
backend = read_setting_default("backend", ifs, "sqlite3");
ifs.close();
}

Expand Down

0 comments on commit 92f6b05

Please sign in to comment.