()
| 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")); |
| 774 | resolve(); |
| 775 | }); |
| 776 | } |
| 777 | downloadRom() { |
| 778 | const supportsExt = (ext) => { |
| 779 | const core = this.getCore(); |
no test coverage detected