Skip to content

Commit

Permalink
Merge pull request #10446 from AdmiralCurtiss/unbreak-shift
Browse files Browse the repository at this point in the history
HotkeyManager: Change defaults for GBA hotkeys so they don't conflict with common keyboard mappings.
  • Loading branch information
leoetlino committed Feb 18, 2022
2 parents eb98bcd + af36b6c commit 92455f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/Core/HotkeyManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,9 +463,9 @@ void HotkeyManager::LoadDefaults(const ControllerInterface& ciface)
set_key_expression(HK_UNDO_SAVE_STATE, hotkey_string({"Shift", "F12"}));

// GBA
set_key_expression(HK_GBA_LOAD, hotkey_string({"`Shift`", "`O`"}));
set_key_expression(HK_GBA_UNLOAD, hotkey_string({"`Shift`", "`W`"}));
set_key_expression(HK_GBA_RESET, hotkey_string({"`Shift`", "`R`"}));
set_key_expression(HK_GBA_LOAD, hotkey_string({"`Ctrl`", "`Shift`", "`O`"}));
set_key_expression(HK_GBA_UNLOAD, hotkey_string({"`Ctrl`", "`Shift`", "`W`"}));
set_key_expression(HK_GBA_RESET, hotkey_string({"`Ctrl`", "`Shift`", "`R`"}));

#ifdef _WIN32
set_key_expression(HK_GBA_VOLUME_DOWN, "`SUBTRACT`");
Expand Down

0 comments on commit 92455f7

Please sign in to comment.