diff options
| author | 2021-11-15 17:57:41 -0600 | |
|---|---|---|
| committer | 2022-01-06 21:26:05 -0600 | |
| commit | 72c8a94a6cdb4d3f322fa6d4b06eab824f53dba6 (patch) | |
| tree | 1be3b99cfa76a7e7c360fa467d8ea6de69a29dc8 /src/input_common/drivers/sdl_driver.h | |
| parent | core/hid: Add home and screenshot button support (diff) | |
| download | yuzu-72c8a94a6cdb4d3f322fa6d4b06eab824f53dba6.tar.gz yuzu-72c8a94a6cdb4d3f322fa6d4b06eab824f53dba6.tar.xz yuzu-72c8a94a6cdb4d3f322fa6d4b06eab824f53dba6.zip | |
yuzu: Add controller hotkeys
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/drivers/sdl_driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/sdl_driver.h b/src/input_common/drivers/sdl_driver.h index e9a5d2e26..4cde3606f 100644 --- a/src/input_common/drivers/sdl_driver.h +++ b/src/input_common/drivers/sdl_driver.h | |||
| @@ -24,7 +24,7 @@ namespace InputCommon { | |||
| 24 | class SDLJoystick; | 24 | class SDLJoystick; |
| 25 | 25 | ||
| 26 | using ButtonBindings = | 26 | using ButtonBindings = |
| 27 | std::array<std::pair<Settings::NativeButton::Values, SDL_GameControllerButton>, 17>; | 27 | std::array<std::pair<Settings::NativeButton::Values, SDL_GameControllerButton>, 18>; |
| 28 | using ZButtonBindings = | 28 | using ZButtonBindings = |
| 29 | std::array<std::pair<Settings::NativeButton::Values, SDL_GameControllerAxis>, 2>; | 29 | std::array<std::pair<Settings::NativeButton::Values, SDL_GameControllerAxis>, 2>; |
| 30 | 30 | ||