diff options
| author | 2021-10-19 00:12:24 -0500 | |
|---|---|---|
| committer | 2021-11-24 20:30:24 -0600 | |
| commit | 601ac43495904f3f7666d79a800a8b4eda5a8461 (patch) | |
| tree | 97e49cb22264ceb730ce51babbd3c2dc27d6b36f /src/input_common/drivers/keyboard.cpp | |
| parent | hid: Fix controller connection/disconnection (diff) | |
| download | yuzu-601ac43495904f3f7666d79a800a8b4eda5a8461.tar.gz yuzu-601ac43495904f3f7666d79a800a8b4eda5a8461.tar.xz yuzu-601ac43495904f3f7666d79a800a8b4eda5a8461.zip | |
core/hid: Only signal when needed
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/drivers/keyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/keyboard.cpp b/src/input_common/drivers/keyboard.cpp index b00a4b8d9..85a781a30 100644 --- a/src/input_common/drivers/keyboard.cpp +++ b/src/input_common/drivers/keyboard.cpp | |||
| @@ -26,7 +26,7 @@ void Keyboard::ReleaseAllKeys() { | |||
| 26 | std::vector<Common::ParamPackage> Keyboard::GetInputDevices() const { | 26 | std::vector<Common::ParamPackage> Keyboard::GetInputDevices() const { |
| 27 | std::vector<Common::ParamPackage> devices; | 27 | std::vector<Common::ParamPackage> devices; |
| 28 | devices.emplace_back(Common::ParamPackage{ | 28 | devices.emplace_back(Common::ParamPackage{ |
| 29 | {"engine", "keyboard"}, | 29 | {"engine", GetEngineName()}, |
| 30 | {"display", "Keyboard Only"}, | 30 | {"display", "Keyboard Only"}, |
| 31 | }); | 31 | }); |
| 32 | return devices; | 32 | return devices; |