mirror of https://github.com/PCSX2/pcsx2.git
CommonHotkeys: Fix target speed going below zero
Also clamps to 100% for challenge mode.
This commit is contained in:
parent
f59030ecaf
commit
95968c7e0e
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue