Fix syntax

This commit is contained in:
Ethan O'Brien 2025-01-05 12:38:02 -06:00
parent 23e0018566
commit f0a79017e5

View File

@ -925,11 +925,11 @@ class EmulatorJS {
return URL.createObjectURL(new Blob([threadData], {type: "application/javascript"}));
}
},
getSavExt() => {
getSavExt: () => {
if (this.saveFileExt) {
return this.saveFileExt;
return "." + this.saveFileExt;
}
return "srm";
return ".srm";
}
}).then(module => {
this.Module = module;