mirror of https://github.com/axmolengine/axmol.git
Fixing a logic error in CCDirector.cpp.
This commit is contained in:
parent
cd40b42761
commit
5da7a7692e
|
@ -202,7 +202,7 @@ void CCDirector::setDefaultValues(void)
|
|||
m_dOldAnimationInterval = m_dAnimationInterval = 1.0 / fps;
|
||||
|
||||
// Display FPS
|
||||
m_bDisplayStats = conf->getBool("cocos2d.x.display_fps", kDefaultFPS);
|
||||
m_bDisplayStats = conf->getBool("cocos2d.x.display_fps", false);
|
||||
|
||||
// GL projection
|
||||
const char *projection = conf->getCString("cocos2d.x.gl.projection", "3d");
|
||||
|
|
Loading…
Reference in New Issue