diff --git a/js/rpg_core/Bitmap.js b/js/rpg_core/Bitmap.js index 069e835f..401618e9 100644 --- a/js/rpg_core/Bitmap.js +++ b/js/rpg_core/Bitmap.js @@ -989,6 +989,10 @@ Bitmap.prototype._setDirty = function() { Bitmap.prototype.checkDirty = function() { if (this._dirty) { this._baseTexture.update(); + var baseTexture = this._baseTexture; + setTimeout(function() { + baseTexture.update(); + }, 0); this._dirty = false; } };