removeTextureAtlas now deletes the correct cache object.

This commit is contained in:
Thomas Felix 2016-11-30 20:54:38 +01:00
parent 77b469b1a5
commit b4a0e7f826

View file

@ -1987,7 +1987,7 @@ Phaser.Cache.prototype = {
*/
removeTextureAtlas: function (key) {
delete this._cache.atlas[key];
delete this._cache.image[key];
},