aboutsummaryrefslogtreecommitdiff
path: root/frontend/libretro.c
diff options
context:
space:
mode:
authordankcushions2016-04-22 15:05:41 +0100
committerdankcushions2016-04-22 15:05:41 +0100
commitcb4d282af668df3bdbd428be5a5ad26996cd0f4f (patch)
tree93e9704ebb9395c4f6c7bab847d9df7abb005d3d /frontend/libretro.c
parent4ed8f00a1221b15925117f1c7413b4640e6e7198 (diff)
parent4da64aea132e752bfea9448238599653e741b465 (diff)
downloadpcsx_rearmed-cb4d282af668df3bdbd428be5a5ad26996cd0f4f.tar.gz
pcsx_rearmed-cb4d282af668df3bdbd428be5a5ad26996cd0f4f.tar.bz2
pcsx_rearmed-cb4d282af668df3bdbd428be5a5ad26996cd0f4f.zip
Merge branch 'master' of https://github.com/notaz/pcsx_rearmed into notaz-master
Diffstat (limited to 'frontend/libretro.c')
-rw-r--r--frontend/libretro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index a9b6e43..ec06527 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -25,6 +25,7 @@
#include "main.h"
#include "plugin.h"
#include "plugin_lib.h"
+#include "arm_features.h"
#include "revision.h"
#include "libretro.h"
@@ -1441,9 +1442,8 @@ void retro_init(void)
/* Set how much slower PSX CPU runs * 100 (so that 200 is 2 times)
* we have to do this because cache misses and some IO penalties
* are not emulated. Warning: changing this may break compatibility. */
-#if !defined(__arm__) || defined(__ARM_ARCH_7A__)
cycle_multiplier = 175;
-#else
+#ifdef HAVE_PRE_ARMV7
cycle_multiplier = 200;
#endif
pl_rearmed_cbs.gpu_peops.iUseDither = 1;