Merge pull request #766 from assoulter/master

Fix m_nEntryID typo
This commit is contained in:
minggo 2012-03-11 20:06:24 -07:00
commit cc7542a86b
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ bool CCSchedulerScriptHandlerEntry::initWithHandler(int nHandler, ccTime fInterv
m_pTimer->retain(); m_pTimer->retain();
m_nHandler = nHandler; m_nHandler = nHandler;
m_bPaused = bPaused; m_bPaused = bPaused;
LUALOG("[LUA] ADD script schedule: %d, entryID: %d", m_nHandler, m_entryID); LUALOG("[LUA] ADD script schedule: %d, entryID: %d", m_nHandler, m_nEntryID);
return true; return true;
} }
@ -61,7 +61,7 @@ CCSchedulerScriptHandlerEntry::~CCSchedulerScriptHandlerEntry(void)
{ {
m_pTimer->release(); m_pTimer->release();
CCScriptEngineManager::sharedManager()->getScriptEngine()->removeLuaHandler(m_nHandler); CCScriptEngineManager::sharedManager()->getScriptEngine()->removeLuaHandler(m_nHandler);
LUALOG("[LUA] DEL script schedule %d, entryID: %d", m_nHandler, m_entryID); LUALOG("[LUA] DEL script schedule %d, entryID: %d", m_nHandler, m_nEntryID);
} }
// ---------------------------- // ----------------------------