mirror of https://github.com/axmolengine/axmol.git
Merge branch 'develop' of https://github.com/cocos2d/cocos2d-x into Armature
This commit is contained in:
commit
3104bfbe50
|
@ -4,6 +4,7 @@ cocos2d-x-3.0alpha1 @??? 2013
|
|||
[FIX] Texture: use CCLOG to log when a texture is being decoded in software
|
||||
[FIX] Spine: fix memory leaks
|
||||
[FIX] fixed a memory leak in XMLHTTPRequest.cpp
|
||||
[FIX] removeSpriteFramesFromFile() crashes if file doesn't exist.
|
||||
[Android]
|
||||
[FIX] Added EGL_RENDERABLE_TYPE to OpenGL attributes
|
||||
[NEW] Added Cocos2dxHelper.runOnGLThread(Runnable) again
|
||||
|
|
|
@ -344,7 +344,11 @@ void SpriteFrameCache::removeSpriteFramesFromFile(const char* plist)
|
|||
{
|
||||
std::string fullPath = FileUtils::getInstance()->fullPathForFilename(plist);
|
||||
Dictionary* dict = Dictionary::createWithContentsOfFileThreadSafe(fullPath.c_str());
|
||||
|
||||
if (dict == nullptr)
|
||||
{
|
||||
CCLOG("cocos2d:SpriteFrameCache:removeSpriteFramesFromFile: create dict by %s fail.",plist);
|
||||
return;
|
||||
}
|
||||
removeSpriteFramesFromDictionary((Dictionary*)dict);
|
||||
|
||||
// remove it from the cache
|
||||
|
|
|
@ -1 +1 @@
|
|||
d846dfb9965fecfad1f6fe6190516035158c4d53
|
||||
381c282bed409f4b41a82505460d4d6c84ba70ab
|
Loading…
Reference in New Issue