CommonHotkeys: Fix target speed going below zero

Also clamps to 100% for challenge mode.
This commit is contained in:
Connor McLaughlin 2022-10-14 19:37:11 +10:00 committed by refractionpcsx2
parent f59030ecaf
commit 95968c7e0e
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ void CommonHost::Internal::ResetVMHotkeyState()
static void HotkeyAdjustTargetSpeed(double delta)
{
EmuConfig.Framerate.NominalScalar = EmuConfig.GS.LimitScalar + delta;
const double min_speed = Achievements::ChallengeModeActive() ? 1.0 : 0.1;
EmuConfig.Framerate.NominalScalar = std::max(min_speed, EmuConfig.GS.LimitScalar + delta);
VMManager::SetLimiterMode(LimiterModeType::Nominal);
gsUpdateFrequency(EmuConfig);
GetMTGS().SetVSync(EmuConfig.GetEffectiveVsyncMode());