X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Flibretro.c;h=ec065270a84597d4b0685381986623f717c3daaa;hb=46ffb580d113265a39017e948fe87639492c8c91;hp=a9b6e433c7a32880dbabe8aea726f5d39fd0dbc3;hpb=f72db18e0c39a5bf115f493767decc409e10f94a;p=pcsx_rearmed.git diff --git a/frontend/libretro.c b/frontend/libretro.c index a9b6e433..ec065270 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;