Skip to content

Commit 92cccfe

Browse files
committed
fix ImageCache#getErrorBitmap doesn't work
1 parent 4bb07f1 commit 92cccfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/rpg_core/ImageCache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ ImageCache.prototype.isReady = function(){
9191
ImageCache.prototype.getErrorBitmap = function(){
9292
var items = this._items;
9393
var bitmap = null;
94-
if(!Object.keys(items).some(function(key){
94+
if(Object.keys(items).some(function(key){
9595
if(items[key].bitmap.isError()){
9696
bitmap = items[key].bitmap;
9797
return true;

0 commit comments

Comments
 (0)