From 44e8d7afc4a20812c0d6be3112c864d4b1af37c1 Mon Sep 17 00:00:00 2001 From: Justin Weiss Date: Wed, 21 Oct 2020 18:03:12 -0700 Subject: [3DS] Set default CPU rate to the usual 57 3DS handles it fine, and 50 makes Metal Gear Solid feel very sluggish. --- frontend/libretro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/libretro.c') diff --git a/frontend/libretro.c b/frontend/libretro.c index b473436..93bfc28 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -2828,7 +2828,7 @@ void retro_init(void) * we have to do this because cache misses and some IO penalties * are not emulated. Warning: changing this may break compatibility. */ cycle_multiplier = 175; -#ifdef HAVE_PRE_ARMV7 +#if defined(HAVE_PRE_ARMV7) && !defined(_3DS) cycle_multiplier = 200; #endif pl_rearmed_cbs.gpu_peops.iUseDither = 1; -- cgit v1.2.3