diff options
| author | 2020-08-26 22:41:51 -0400 | |
|---|---|---|
| committer | 2020-08-26 22:41:51 -0400 | |
| commit | 8ffc491546c8fa449e23463585e4b55498dcb307 (patch) | |
| tree | e3f420fcff7357711b401eefe67c4255041ed92a | |
| parent | configure_input_player: Fix modifier scale button mapping (diff) | |
| download | yuzu-8ffc491546c8fa449e23463585e4b55498dcb307.tar.gz yuzu-8ffc491546c8fa449e23463585e4b55498dcb307.tar.xz yuzu-8ffc491546c8fa449e23463585e4b55498dcb307.zip | |
input_common/main: Add "/Mouse" to the display name
| -rw-r--r-- | src/input_common/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp index 7bad2c45b..8e67a7437 100644 --- a/src/input_common/main.cpp +++ b/src/input_common/main.cpp | |||
| @@ -105,7 +105,7 @@ std::string GenerateAnalogParamFromKeys(int key_up, int key_down, int key_left, | |||
| 105 | std::vector<Common::ParamPackage> GetInputDevices() { | 105 | std::vector<Common::ParamPackage> GetInputDevices() { |
| 106 | std::vector<Common::ParamPackage> devices = { | 106 | std::vector<Common::ParamPackage> devices = { |
| 107 | Common::ParamPackage{{"display", "Any"}, {"class", "any"}}, | 107 | Common::ParamPackage{{"display", "Any"}, {"class", "any"}}, |
| 108 | Common::ParamPackage{{"display", "Keyboard"}, {"class", "key"}}, | 108 | Common::ParamPackage{{"display", "Keyboard/Mouse"}, {"class", "key"}}, |
| 109 | }; | 109 | }; |
| 110 | #ifdef HAVE_SDL2 | 110 | #ifdef HAVE_SDL2 |
| 111 | auto sdl_devices = sdl->GetInputDevices(); | 111 | auto sdl_devices = sdl->GetInputDevices(); |