From 71f31f3f0c0c7a77e32a3486a6c81908c85e0c97 Mon Sep 17 00:00:00 2001 From: jSTE0 <98854293+jSTE0@users.noreply.github.com> Date: Tue, 29 Mar 2022 22:13:32 +0100 Subject: [PATCH] frontend: Disable iTempo Leave iTempo set to 0 on all libbretro platforms. This fixes the build failure for Miyoo. Also results in iTempo being 0 for Raspberry Pi 1, which is faster than the Miyoo but slower than the new 3DS. --- frontend/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/main.c b/frontend/main.c index 1b0016b0..c3777ccb 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -156,7 +156,7 @@ void emu_set_default_config(void) #if defined(HAVE_PRE_ARMV7) && !defined(_3DS) /* XXX GPH hack */ spu_config.iUseReverb = 0; spu_config.iUseInterpolation = 0; -#ifndef(_MIYOO) +#ifndef HAVE_LIBRETRO spu_config.iTempo = 1; #endif #endif -- 2.39.2