Skip to content

Commit f2a86f3

Browse files
authored
Remove unnecessary rigmarole around importing the script as a blob (libretro#17642)
1 parent 23170b8 commit f2a86f3

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

Makefile.emscripten

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ ifeq ($(HAVE_WASMFS), 1)
118118
endif
119119

120120
ifeq ($(PROXY_TO_PTHREAD),1)
121-
LIBS += -sUSE_ES6_IMPORT_META=0 -sENVIRONMENT=worker,web
121+
LIBS += -sENVIRONMENT=worker,web
122122
LIBS += -sPROXY_TO_PTHREAD -sOFFSCREENCANVAS_SUPPORT
123123
DEFINES += -DUSE_OFFSCREENCANVAS=1 -DPROXY_TO_PTHREAD=1
124124
else

frontend/drivers/platform_emscripten.c

+5
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,11 @@ static uint64_t frontend_emscripten_get_free_mem(void)
461461
}
462462

463463
void emscripten_bootup_mainloop(void *argptr) {
464+
if(retro_started) {
465+
/* A stale extra call to bootup_mainloop for some reason */
466+
RARCH_ERR("[Emscripten] unexpected second call to bootup_mainloop after rarch_main called\n");
467+
return;
468+
}
464469
if(filesystem_ready) {
465470
args_t *args = (args_t*)argptr;
466471
emscripten_cancel_main_loop();

pkg/emscripten/libretro-thread/libretro.js

+5-14
Original file line numberDiff line numberDiff line change
@@ -216,24 +216,15 @@ $(function() {
216216
loadCore(core);
217217
});
218218

219-
async function downloadScript(src) {
220-
let resp = await fetch(src);
221-
let blob = await resp.blob();
222-
return blob;
223-
}
224-
225219
function loadCore(core) {
226220
// Make the core the selected core in the UI.
227221
var coreTitle = $('#core-selector a[data-core="' + core + '"]').addClass('active').text();
228222
$('#dropdownMenu1').text(coreTitle);
229-
downloadScript("./"+core+"_libretro.js").then(scriptBlob => {
230-
Module.mainScriptUrlOrBlob = scriptBlob;
231-
import(URL.createObjectURL(scriptBlob)).then(script => {
232-
script.default(Module).then(mod => {
233-
Module = mod;
234-
}).catch(err => { console.error("Couldn't instantiate module",err); throw err; });
235-
}).catch(err => { console.error("Couldn't load script",err); throw err; });
236-
});
223+
import("./"+core+"_libretro.js").then(script => {
224+
script.default(Module).then(mod => {
225+
Module = mod;
226+
}).catch(err => { console.error("Couldn't instantiate module",err); throw err; });
227+
}).catch(err => { console.error("Couldn't import module"); throw err; });
237228
}
238229

239230
const setupWorker = new Worker("libretro.worker.js");

0 commit comments

Comments
 (0)