Fix issue that would disable Throttling

This commit is contained in:
Sam Belliveau 2023-01-08 01:20:19 -05:00
parent bc1cc9eeb4
commit f7de0e4147
1 changed files with 0 additions and 3 deletions

View File

@ -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);