Skip to content

Commit 5b81be3

Browse files
authored
Merge pull request #59 from rpgtkoolmv/extend_fonterror
extend the limit font load error
2 parents c4de217 + d8d5b1c commit 5b81be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/rpg_scenes/Scene_Boot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Scene_Boot.prototype.isGameFontLoaded = function() {
5252
return true;
5353
} else if (!Graphics.canUseCssFontLoading()){
5454
var elapsed = Date.now() - this._startDate;
55-
if (elapsed >= 20000) {
55+
if (elapsed >= 60000) {
5656
throw new Error('Failed to load GameFont');
5757
}
5858
}

0 commit comments

Comments
 (0)