()
| 763 | }); |
| 764 | } |
| 765 | downloadGameParent() { |
| 766 | return new Promise(async (resolve) => { |
| 767 | this.config.gameParentUrl = await this.downloadGameFile(this.config.gameParentUrl, "parent", this.localization("Download Game Parent"), this.localization("Decompress Game Parent")); |
| 768 | resolve(); |
| 769 | }); |
| 770 | } |
| 771 | downloadBios() { |
| 772 | return new Promise(async (resolve) => { |
| 773 | this.config.biosUrl = await this.downloadGameFile(this.config.biosUrl, "bios", this.localization("Download Game BIOS"), this.localization("Decompress Game BIOS")); |
no test coverage detected