(message)
| 510 | } |
| 511 | } |
| 512 | startGameError(message) { |
| 513 | console.log(message); |
| 514 | this.textElem.innerText = message; |
| 515 | this.textElem.classList.add("ejs_error_text"); |
| 516 | |
| 517 | this.setupSettingsMenu(); |
| 518 | this.loadSettings(); |
| 519 | |
| 520 | this.menu.failedToStart(); |
| 521 | this.handleResize(); |
| 522 | this.failedToStart = true; |
| 523 | } |
| 524 | downloadGameCore() { |
| 525 | this.textElem.innerText = this.localization("Download Game Core"); |
| 526 | if (!this.config.threads && this.requiresThreads(this.getCore())) { |
no test coverage detected