aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/libretro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index bd7dc43..2a175cc 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -1779,7 +1779,7 @@ static void update_variables(bool in_flight)
Config.Cpu = CPU_INTERPRETER;
else
#endif
- if (strcmp(var.value, "disabled") == 0)
+ if (strcmp(var.value, "disabled") == 0 || !found_bios)
Config.Cpu = CPU_INTERPRETER;
else if (strcmp(var.value, "enabled") == 0)
Config.Cpu = CPU_DYNAREC;