fixed mistake

This commit is contained in:
cw 2014-05-13 18:15:25 +08:00
parent 3207d841a3
commit d9543e9371
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ void ConfigParser::readConfig()
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID && !defined(NDEBUG)) || (CC_TARGET_PLATFORM == CC_PLATFORM_IOS && defined(COCOS2D_DEBUG))
string fullPathFile = FileUtils::getInstance()->getWritablePath();
fullPathFile.append(filecfg.c_str());
FILE * pFile = fopen (fullPathFile.c_str() , "r");
pFile = fopen (fullPathFile.c_str() , "r");
#endif
if (!pFile)