mirror of https://github.com/axmolengine/axmol.git
fix bad name variable
This commit is contained in:
parent
90a295399d
commit
d10992951b
|
@ -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)
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue