Qt: Implement "Refresh Game List" hotkey

This commit is contained in:
spycrab
2018-06-06 18:28:51 +02:00
parent c93210155f
commit 23394164de
3 changed files with 7 additions and 0 deletions

View File

@ -165,6 +165,10 @@ void HotkeyScheduler::Run()
Common::SleepCurrentThread(100);
}
// Refresh Game List
if (IsHotkey(HK_REFRESH_LIST))
emit RefreshGameListHotkey();
// Pause and Unpause
if (IsHotkey(HK_PLAY_PAUSE))
emit TogglePauseHotkey();