mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Add hotkeys for incrementing/decrementing selected state slot (like RetroArch)
This commit is contained in:
@ -490,6 +490,12 @@ void HotkeyScheduler::Run()
|
||||
if (IsHotkey(HK_LOAD_STATE_SLOT_SELECTED))
|
||||
emit StateLoadSlotHotkey();
|
||||
|
||||
if (IsHotkey(HK_INCREMENT_SELECTED_STATE_SLOT))
|
||||
emit IncrementSelectedStateSlotHotkey();
|
||||
|
||||
if (IsHotkey(HK_DECREMENT_SELECTED_STATE_SLOT))
|
||||
emit DecrementSelectedStateSlotHotkey();
|
||||
|
||||
// Stereoscopy
|
||||
if (IsHotkey(HK_TOGGLE_STEREO_SBS))
|
||||
{
|
||||
|
Reference in New Issue
Block a user