X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Flibretro.c;h=b1af9f15a4c97c1db7fc8be48f6f854261e9832e;hp=a115fc67567155438d7e73e6382ca5cb1b1447d8;hb=1da9b9ae28406f3bec5b2bd5905783971b991bec;hpb=2646cb48cd02fcd2d09a1882e276bb8fb03b2e14 diff --git a/frontend/libretro.c b/frontend/libretro.c index a115fc67..b1af9f15 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -1948,18 +1948,13 @@ static void update_variables(bool in_flight) { R3000Acpu *prev_cpu = psxCpu; -#if defined(LIGHTREC) - bool can_use_dynarec = found_bios; -#else - bool can_use_dynarec = 1; -#endif #ifdef _3DS if (!__ctr_svchax) Config.Cpu = CPU_INTERPRETER; else #endif - if (strcmp(var.value, "disabled") == 0 || !can_use_dynarec) + if (strcmp(var.value, "disabled") == 0) Config.Cpu = CPU_INTERPRETER; else if (strcmp(var.value, "enabled") == 0) Config.Cpu = CPU_DYNAREC;