diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-08-26 22:41:51 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-08-26 22:41:51 -0400 |
commit | 8ffc491546c8fa449e23463585e4b55498dcb307 (patch) | |
tree | e3f420fcff7357711b401eefe67c4255041ed92a /src/input_common/main.cpp | |
parent | f5f30781ae5a7ecefe51bf0d2c63cdd68ba12162 (diff) |
input_common/main: Add "/Mouse" to the display name
Diffstat (limited to 'src/input_common/main.cpp')
-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 7bad2c45be..8e67a74373 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, std::vector<Common::ParamPackage> GetInputDevices() { std::vector<Common::ParamPackage> devices = { Common::ParamPackage{{"display", "Any"}, {"class", "any"}}, - Common::ParamPackage{{"display", "Keyboard"}, {"class", "key"}}, + Common::ParamPackage{{"display", "Keyboard/Mouse"}, {"class", "key"}}, }; #ifdef HAVE_SDL2 auto sdl_devices = sdl->GetInputDevices(); |