diff options
author | lhofhansl <lhofhansl@yahoo.com> | 2018-07-25 17:54:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 17:54:23 +0200 |
commit | 7454deb1bf04ab3478b4e2dc6b2821ae86f4514f (patch) | |
tree | 9d35ccee90a3f4a21015b2dded3da60f42ec1197 /src/map.h | |
parent | 9537cfd3f8264700619f58d15741829489e1099e (diff) | |
download | minetest-7454deb1bf04ab3478b4e2dc6b2821ae86f4514f.tar.gz minetest-7454deb1bf04ab3478b4e2dc6b2821ae86f4514f.tar.bz2 minetest-7454deb1bf04ab3478b4e2dc6b2821ae86f4514f.zip |
Allow an optional readonly base database (#7544)
* Allow an optional readonly base database
* Added basic documentation
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -469,6 +469,7 @@ private: */ bool m_map_metadata_changed = true; MapDatabase *dbase = nullptr; + MapDatabase *dbase_ro = nullptr; }; |