summaryrefslogtreecommitdiff
path: root/src/areastore.h
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2015-10-29 23:17:44 -0400
committerShadowNinja <shadowninja@minetest.net>2016-03-07 16:33:20 -0500
commitf021db724301f082cbde719afb2405ec1d8cf82c (patch)
tree0d102e6a21c1f427d31b6b318338b6514a5a8fc5 /src/areastore.h
parent095db16990eea878ce01b29c1eb85a128f98381a (diff)
downloadminetest-f021db724301f082cbde719afb2405ec1d8cf82c.tar.gz
minetest-f021db724301f082cbde719afb2405ec1d8cf82c.tar.bz2
minetest-f021db724301f082cbde719afb2405ec1d8cf82c.zip
Make AreaStore cache setting private
Diffstat (limited to 'src/areastore.h')
-rw-r--r--src/areastore.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/areastore.h b/src/areastore.h
index de4588706..493b4fc25 100644
--- a/src/areastore.h
+++ b/src/areastore.h
@@ -62,7 +62,6 @@ protected:
// TODO change to unordered_map when we can
std::map<u32, Area> areas_map;
- bool cache_enabled; // don't write to this from subclasses, only read.
public:
// Updates the area's ID
virtual bool insertArea(Area *a) = 0;
@@ -83,10 +82,10 @@ public:
{}
AreaStore() :
- cache_enabled(true),
m_cacheblock_radius(64),
m_res_cache(1000, &cacheMiss, this),
- m_next_id(0)
+ m_next_id(0),
+ m_cache_enabled(true)
{
}
@@ -103,7 +102,7 @@ private:
u8 m_cacheblock_radius; // if you modify this, call invalidateCache()
LRUCache<v3s16, std::vector<Area *> > m_res_cache;
u32 m_next_id;
-
+ bool m_cache_enabled;
};