Skip to content

Commit

Permalink
Rename LagPool's member variables to avoid MSVC freaking up due to it…
Browse files Browse the repository at this point in the history
…'s #define max
  • Loading branch information
celeron55 committed Aug 6, 2013
1 parent 61f2409 commit 53bf62b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/content_sao.h
Expand Up @@ -124,30 +124,30 @@ class LuaEntitySAO : public ServerActiveObject

class LagPool
{
float pool;
float max;
float m_pool;
float m_max;
public:
LagPool(): pool(15), max(15)
LagPool(): m_pool(15), m_max(15)
{}
void setMax(float new_max)
{
max = new_max;
if(pool > new_max)
pool = new_max;
m_max = new_max;
if(m_pool > new_max)
m_pool = new_max;
}
void add(float dtime)
{
pool -= dtime;
if(pool < 0)
pool = 0;
m_pool -= dtime;
if(m_pool < 0)
m_pool = 0;
}
bool grab(float dtime)
{
if(dtime <= 0)
return true;
if(pool + dtime > max)
if(m_pool + dtime > m_max)
return false;
pool += dtime;
m_pool += dtime;
return true;
}
};
Expand Down

0 comments on commit 53bf62b

Please sign in to comment.