summaryrefslogtreecommitdiff
path: root/src/subgame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/subgame.cpp')
-rw-r--r--src/subgame.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/subgame.cpp b/src/subgame.cpp
index 95ae9ef98..1030d535a 100644
--- a/src/subgame.cpp
+++ b/src/subgame.cpp
@@ -242,7 +242,12 @@ bool initializeWorld(const std::string &path, const std::string &gameid)
infostream<<"Creating world.mt ("<<worldmt_path<<")"<<std::endl;
fs::CreateAllDirs(path);
std::ostringstream ss(std::ios_base::binary);
- ss<<"gameid = "<<gameid<<"\nbackend = sqlite3\n";
+ ss<<"gameid = "<<gameid<<
+#ifdef __ANDROID__
+ "\nbackend = leveldb\n";
+#else
+ "\nbackend = sqlite3\n";
+#endif
fs::safeWriteToFile(worldmt_path, ss.str());
}
return true;