mirror of
https://github.com/EmulatorJS/EmulatorJS.git
synced 2026-02-06 03:06:57 +00:00
fix silly error (#1063)
This commit is contained in:
parent
b5a719b846
commit
a0f4db7610
@ -732,7 +732,7 @@ class EmulatorJS {
|
||||
const coreFilename = "/" + this.fileName;
|
||||
const coreFilePath = coreFilename.substring(0, coreFilename.length - coreFilename.split("/").pop().length);
|
||||
if (this.config.dontExtractBIOS === true) {
|
||||
this.gameManager.FS.writeFile(coreFilePath + k.split("/").pop(), new Uint8Array(input));
|
||||
this.gameManager.FS.writeFile(coreFilePath + assetUrl.split("/").pop(), new Uint8Array(input));
|
||||
return resolve(assetUrl);
|
||||
}
|
||||
const data = await this.checkCompression(new Uint8Array(input), decompressProgressMessage);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user