Skip to content

Commit a1e77b6

Browse files
authored
Restore options to default, change default runtime engine
1 parent 3a04186 commit a1e77b6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

libretro/libretro_core_options.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,11 @@ struct retro_core_option_v2_definition option_defs_us[] = {
135135
{ "Interpreter", NULL },
136136
{ NULL, NULL },
137137
},
138+
#ifdef __EMSCRIPTEN__
139+
"Interpreter"
140+
#else
138141
"JIT"
142+
#endif
139143
},
140144
{
141145
"ppsspp_fast_memory",
@@ -397,7 +401,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
397401
NULL,
398402
"video",
399403
BOOL_OPTIONS,
400-
"enabled"
404+
"disabled"
401405
},
402406
{
403407
"ppsspp_frame_duplication",
@@ -407,7 +411,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
407411
NULL,
408412
"video",
409413
BOOL_OPTIONS,
410-
"disabled"
414+
"enabled"
411415
},
412416
{
413417
"ppsspp_detect_vsync_swap_interval",

0 commit comments

Comments
 (0)