Make m_blocks_cache private

@RealBadAngel has removed all outside access of the cache.
This commit is contained in:
est31 2015-06-30 21:34:23 +02:00
parent 370a33686a
commit 9e3e6dc5ec
1 changed files with 1 additions and 1 deletions

View File

@ -113,6 +113,7 @@ class MinimapUpdateThread : public UpdateThread
{
private:
MinimapUpdateQueue m_queue;
std::map<v3s16, MinimapMapblock *> m_blocks_cache;
protected:
const char *getName()
@ -139,7 +140,6 @@ public:
video::IVideoDriver *driver;
ITextureSource *tsrc;
MinimapData *data;
std::map<v3s16, MinimapMapblock *> m_blocks_cache;
};
class Mapper