From 66cfc272c1fe5a33221b72ac2ee2739086df22c5 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Tue, 19 Jan 2021 14:13:53 -0600 Subject: [PATCH] Lowers MelonDSDeltaCore non-JIT maximum Fast Forward speed to 1.5x Without JIT, the processor throttles very quickly at 2x. 1.5x allows at least a couple minutes before throttling kicks in. --- Delta/Systems/DeltaCoreProtocol+Delta.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Delta/Systems/DeltaCoreProtocol+Delta.swift b/Delta/Systems/DeltaCoreProtocol+Delta.swift index de6e734..3ed8bb8 100644 --- a/Delta/Systems/DeltaCoreProtocol+Delta.swift +++ b/Delta/Systems/DeltaCoreProtocol+Delta.swift @@ -71,7 +71,7 @@ extension DeltaCoreProtocol case N64.core where UIDevice.current.hasA11ProcessorOrBetter: return 3 case N64.core where UIDevice.current.hasA9ProcessorOrBetter: return 1.5 case MelonDS.core where UIDevice.current.supportsJIT: return 3 - case MelonDS.core where UIDevice.current.hasA11ProcessorOrBetter: return 2 + case MelonDS.core where UIDevice.current.hasA11ProcessorOrBetter: return 1.5 default: return 1 } }