aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortwinaphex2020-04-28 18:29:33 +0200
committertwinaphex2020-04-28 18:29:33 +0200
commitf542ede8394df9acd50c46e8c9c5483192f4c3d0 (patch)
tree0016f8a8318a9dcf338b21dda37ba064a06a9a05
parent30816bf4d53d63c80630a214fb8b7a13f30f22a4 (diff)
downloadpcsx_rearmed-f542ede8394df9acd50c46e8c9c5483192f4c3d0.tar.gz
pcsx_rearmed-f542ede8394df9acd50c46e8c9c5483192f4c3d0.tar.bz2
pcsx_rearmed-f542ede8394df9acd50c46e8c9c5483192f4c3d0.zip
Revert "Automatically disable lightrec when no bios is present"
This reverts commit cf98d473a9ddaa6a77bed1cb5af706a4cd50b8b0.
-rw-r--r--frontend/libretro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index 2a175cc..bd7dc43 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 || !found_bios)
+ if (strcmp(var.value, "disabled") == 0)
Config.Cpu = CPU_INTERPRETER;
else if (strcmp(var.value, "enabled") == 0)
Config.Cpu = CPU_DYNAREC;