File tree 3 files changed +11
-15
lines changed
pkg/emscripten/libretro-thread
3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ ifeq ($(HAVE_WASMFS), 1)
118
118
endif
119
119
120
120
ifeq ($(PROXY_TO_PTHREAD),1)
121
- LIBS += -sUSE_ES6_IMPORT_META=0 - sENVIRONMENT=worker,web
121
+ LIBS += -sENVIRONMENT=worker,web
122
122
LIBS += -sPROXY_TO_PTHREAD -sOFFSCREENCANVAS_SUPPORT
123
123
DEFINES += -DUSE_OFFSCREENCANVAS=1 -DPROXY_TO_PTHREAD=1
124
124
else
Original file line number Diff line number Diff line change @@ -461,6 +461,11 @@ static uint64_t frontend_emscripten_get_free_mem(void)
461
461
}
462
462
463
463
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
+ }
464
469
if (filesystem_ready ) {
465
470
args_t * args = (args_t * )argptr ;
466
471
emscripten_cancel_main_loop ();
Original file line number Diff line number Diff line change @@ -216,24 +216,15 @@ $(function() {
216
216
loadCore ( core ) ;
217
217
} ) ;
218
218
219
- async function downloadScript ( src ) {
220
- let resp = await fetch ( src ) ;
221
- let blob = await resp . blob ( ) ;
222
- return blob ;
223
- }
224
-
225
219
function loadCore ( core ) {
226
220
// Make the core the selected core in the UI.
227
221
var coreTitle = $ ( '#core-selector a[data-core="' + core + '"]' ) . addClass ( 'active' ) . text ( ) ;
228
222
$ ( '#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 ; } ) ;
237
228
}
238
229
239
230
const setupWorker = new Worker ( "libretro.worker.js" ) ;
You can’t perform that action at this time.
0 commit comments