fix m_nEntryID typo for CC_LUA_ENGINE_DEBUG

This commit is contained in:
Anton Rusanov 2012-03-12 00:59:03 +04:00
parent a0d30b5d1b
commit 8e53d9db9f
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_nHandler = nHandler;
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;
}
@ -61,7 +61,7 @@ CCSchedulerScriptHandlerEntry::~CCSchedulerScriptHandlerEntry(void)
{
m_pTimer->release();
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);
}
// ----------------------------