aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/psxmem.h
diff options
context:
space:
mode:
authortwinaphex2020-02-09 14:12:16 +0100
committertwinaphex2020-02-09 14:12:16 +0100
commit87cc59de47301ff0a2e71b5ece28447ec77b0153 (patch)
tree1e5e06618500e2392efb3ed0db651e876270b07a /libpcsxcore/psxmem.h
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/psxmem.h')
-rw-r--r--libpcsxcore/psxmem.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libpcsxcore/psxmem.h b/libpcsxcore/psxmem.h
index d9fee00..36b4693 100644
--- a/libpcsxcore/psxmem.h
+++ b/libpcsxcore/psxmem.h
@@ -122,9 +122,11 @@ extern u8 **psxMemRLUT;
#define PSXMu32ref(mem) (*(u32 *)PSXM(mem))
-#if !defined(PSXREC) && (defined(__x86_64__) || defined(__i386__) || defined(__ppc__)) && !defined(NOPSXREC)
+#ifndef PSXREC
+#if defined(NEW_DYNAREC) || defined(LIGHTREC)
#define PSXREC
#endif
+#endif
int psxMemInit();
void psxMemReset();