aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/new_dynarec/emu_if.c
diff options
context:
space:
mode:
authornotaz2012-11-30 02:53:25 +0200
committernotaz2012-12-02 02:37:11 +0200
commit665f33e1e8ce2e40a7939a33075c3bce1c90790c (patch)
treee698dae48cdae636961762d00fb6a42e80653dcd /libpcsxcore/new_dynarec/emu_if.c
parentda710571b75db7031b82924ab3ad47eb645ce215 (diff)
downloadpcsx_rearmed-665f33e1e8ce2e40a7939a33075c3bce1c90790c.tar.gz
pcsx_rearmed-665f33e1e8ce2e40a7939a33075c3bce1c90790c.tar.bz2
pcsx_rearmed-665f33e1e8ce2e40a7939a33075c3bce1c90790c.zip
improve ARM feature detection
Diffstat (limited to 'libpcsxcore/new_dynarec/emu_if.c')
-rw-r--r--libpcsxcore/new_dynarec/emu_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c
index 588bc63..b8e9883 100644
--- a/libpcsxcore/new_dynarec/emu_if.c
+++ b/libpcsxcore/new_dynarec/emu_if.c
@@ -268,9 +268,9 @@ static int ari64_init()
if (psxCP2[i] != psxNULL)
gte_handlers[i] = psxCP2[i];
-#if !defined(DRC_DBG)
-#ifdef __arm__
+#if defined(__arm__) && !defined(DRC_DBG)
gte_handlers[0x06] = gteNCLIP_arm;
+#ifdef HAVE_ARMV5
gte_handlers_nf[0x01] = gteRTPS_nf_arm;
gte_handlers_nf[0x30] = gteRTPT_nf_arm;
#endif