aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/misc.c
diff options
context:
space:
mode:
authortwinaphex2020-02-09 14:12:16 +0100
committertwinaphex2020-02-09 14:12:16 +0100
commit87cc59de47301ff0a2e71b5ece28447ec77b0153 (patch)
tree1e5e06618500e2392efb3ed0db651e876270b07a /libpcsxcore/misc.c
parent9c9d02e498a0ec5de6ea83f58b79fb972887c650 (diff)
downloadpcsx_rearmed-87cc59de47301ff0a2e71b5ece28447ec77b0153.tar.gz
pcsx_rearmed-87cc59de47301ff0a2e71b5ece28447ec77b0153.tar.bz2
pcsx_rearmed-87cc59de47301ff0a2e71b5ece28447ec77b0153.zip
(Android) Aarch64/x86/x64 now has lightrec support
Diffstat (limited to 'libpcsxcore/misc.c')
-rw-r--r--libpcsxcore/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c
index 82e6b8b..56b7552 100644
--- a/libpcsxcore/misc.c
+++ b/libpcsxcore/misc.c
@@ -750,7 +750,7 @@ int RecvPcsxInfo() {
NET_recvData(&Config.Cpu, sizeof(Config.Cpu), PSE_NET_BLOCKING);
if (tmp != Config.Cpu) {
psxCpu->Shutdown();
-#ifdef PSXREC
+#if defined(NEW_DYNAREC) || defined(LIGHTREC)
if (Config.Cpu == CPU_INTERPRETER) psxCpu = &psxInt;
else psxCpu = &psxRec;
#else