Skip to content

Commit

Permalink
Make m_blocks_cache private
Browse files Browse the repository at this point in the history
@RealBadAngel has removed all outside access of the cache.
  • Loading branch information
est31 committed Jun 30, 2015
1 parent 370a336 commit 9e3e6dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/minimap.h
Expand Up @@ -113,6 +113,7 @@ class MinimapUpdateThread : public UpdateThread
{
private:
MinimapUpdateQueue m_queue;
std::map<v3s16, MinimapMapblock *> m_blocks_cache;

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

class Mapper
Expand Down

0 comments on commit 9e3e6dc

Please sign in to comment.