关于 cocos2d1.3 版本的问题

http://my.oschina.net/yunyu/blog/66681
 
home 键回到游戏会出现 cocos2d-x get data from file(assets/) failed! 的问题。这个是个版本 bug。
找到 CCFileUtils.cpp 文件,找到如下的函数,把 return ""; 改成 return pszRelativePath; 即可

const char* CCFileUtils::fullPathFromRelativePath(const char *pszRelativePath, ccResolutionType *pResolutionType)
{
//return "";
return pszRelativePath;
}

你可能感兴趣的:(关于 cocos2d1.3 版本的问题)