Merge pull request #4864 from daltomi/test

fix bad name variable CCDirector
This commit is contained in:
James Chen 2014-01-03 21:44:42 -08:00
commit 43cdf1713b
2 changed files with 5 additions and 5 deletions

View File

@ -132,7 +132,7 @@ bool Director::init(void)
_paused = false;
// purge ?
_purgeDirecotorInNextLoop = false;
_purgeDirectorInNextLoop = false;
_winSizeInPoints = Size::ZERO;
@ -718,7 +718,7 @@ void Director::popToSceneStackLevel(int level)
void Director::end()
{
_purgeDirecotorInNextLoop = true;
_purgeDirectorInNextLoop = true;
}
void Director::purgeDirector()
@ -1077,9 +1077,9 @@ void DisplayLinkDirector::startAnimation()
void DisplayLinkDirector::mainLoop()
{
if (_purgeDirecotorInNextLoop)
if (_purgeDirectorInNextLoop)
{
_purgeDirecotorInNextLoop = false;
_purgeDirectorInNextLoop = false;
purgeDirector();
}
else if (! _invalid)

View File

@ -392,7 +392,7 @@ public:
protected:
void purgeDirector();
bool _purgeDirecotorInNextLoop; // this flag will be set to true in end()
bool _purgeDirectorInNextLoop; // this flag will be set to true in end()
void setNextScene();