From f7de0e4147e13f4ed9463602440a089515b6b5c5 Mon Sep 17 00:00:00 2001 From: Sam Belliveau Date: Sun, 8 Jan 2023 01:20:19 -0500 Subject: [PATCH] Fix issue that would disable Throttling --- Source/Core/Core/CoreTiming.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Core/Core/CoreTiming.cpp b/Source/Core/Core/CoreTiming.cpp index d85db5288d..12aff010cb 100644 --- a/Source/Core/Core/CoreTiming.cpp +++ b/Source/Core/Core/CoreTiming.cpp @@ -331,9 +331,6 @@ void CoreTimingManager::Advance() void CoreTimingManager::Throttle(const s64 target_cycle) { - if (target_cycle <= m_throttle_last_cycle) - return; - const double speed = Core::GetIsThrottlerTempDisabled() ? 0.0 : Config::Get(Config::MAIN_EMULATION_SPEED);