Qt: Implement "Reset" hotkey

This commit is contained in:
spycrab 2018-05-12 03:56:10 +02:00
commit 226b6888d6
3 changed files with 6 additions and 1 deletions

View file

@ -165,6 +165,10 @@ void HotkeyScheduler::Run()
if (IsHotkey(HK_STOP))
emit StopHotkey();
// Reset
if (IsHotkey(HK_RESET))
emit ResetHotkey();
// Frameskipping
HandleFrameskipHotkeys();