mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Fix Frame Advance Hold Delay Changes
Fixes the issues of modifying the frame advance speed increase/decrease not actually doing anything
This commit is contained in:
parent
ffb9722f2d
commit
1ea9b36e3b
@ -1568,12 +1568,16 @@ void CFrame::HandleFrameSkipHotkeys()
|
||||
wxCommandEvent evt;
|
||||
evt.SetId(IDM_FRAMESTEP);
|
||||
CFrame::OnFrameStep(evt);
|
||||
if (holdFrameStepDelay > 0 && frameStepCount == 0)
|
||||
if (holdFrameStepDelay > 0)
|
||||
holdFrameStep = true;
|
||||
}
|
||||
|
||||
if (frameStepCount < FRAME_STEP_DELAY)
|
||||
{
|
||||
++frameStepCount;
|
||||
if (holdFrameStep)
|
||||
holdFrameStep = false;
|
||||
}
|
||||
|
||||
if (frameStepCount == FRAME_STEP_DELAY && holdFrameStep && holdFrameStepDelayCount >= holdFrameStepDelay)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user