fixed #2105: Adding Travis build support for linux and NaCl.

This commit is contained in:
James Chen 2013-05-06 10:55:39 +08:00
parent f12d118cb9
commit fead37eab3
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ void CCDirector::popToRootScene(void)
void CCDirector::popToSceneStackLevel(int level)
{
CCAssert(m_pRunningScene != NULL, "A running Scene is needed");
unsigned int c = m_pobScenesStack->count();
int c = (int)m_pobScenesStack->count();
// level 0? -> end
if (level == 0)