Code cleanup.

This commit is contained in:
spx
2011-01-30 15:44:48 +00:00
parent e4944fa99f
commit 7b5330896f
2 changed files with 22 additions and 22 deletions

View File

@ -12,7 +12,7 @@ public:
static void CleanUp();
static lua_State* GetState() { return m_pState; }
static lua_State* GetState() { return c_pState; }
static void ReportErrors(lua_State * L);
@ -20,9 +20,9 @@ public:
protected:
static int m_RefCount;
static int c_RefCount;
static lua_State* m_pState;
static lua_State* c_pState;
};
#endif