From fe8e55f2674156af24ec515b4f3b1b9b53a2fd18 Mon Sep 17 00:00:00 2001 From: krmbn0576 Date: Wed, 5 Jun 2019 15:54:04 +0900 Subject: [PATCH] Fix the progress bar showed after retry loading --- js/rpg_core/Graphics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/rpg_core/Graphics.js b/js/rpg_core/Graphics.js index 8eacfc99..2eeae80b 100644 --- a/js/rpg_core/Graphics.js +++ b/js/rpg_core/Graphics.js @@ -395,7 +395,7 @@ Graphics.eraseLoadingError = function() { this._errorPrinter.style.msUserSelect = 'none'; this._errorPrinter.style.mozUserSelect = 'none'; this._errorPrinter.oncontextmenu = function() { return false; }; - this.startLoading(); + this._loadingCount = 0; } };