diff options
| author | 2021-07-22 19:59:26 -0500 | |
|---|---|---|
| committer | 2021-08-07 23:11:23 -0500 | |
| commit | 48b6d41f1b95cd61d6c60c3db1a5b89ac788a66a (patch) | |
| tree | 6cac4bd2f23cba7a8c2bcee29270893d60179752 /src/input_common/mouse/mouse_poller.cpp | |
| parent | Merge pull request #6830 from ameerj/nvdec-unimpld-codec (diff) | |
| download | yuzu-48b6d41f1b95cd61d6c60c3db1a5b89ac788a66a.tar.gz yuzu-48b6d41f1b95cd61d6c60c3db1a5b89ac788a66a.tar.xz yuzu-48b6d41f1b95cd61d6c60c3db1a5b89ac788a66a.zip | |
input_common: Improve SDL joystick and hide toggle option
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/mouse/mouse_poller.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input_common/mouse/mouse_poller.cpp b/src/input_common/mouse/mouse_poller.cpp index efcdd85d2..090b26972 100644 --- a/src/input_common/mouse/mouse_poller.cpp +++ b/src/input_common/mouse/mouse_poller.cpp | |||
| @@ -57,6 +57,7 @@ Common::ParamPackage MouseButtonFactory::GetNextInput() const { | |||
| 57 | if (pad.button != MouseInput::MouseButton::Undefined) { | 57 | if (pad.button != MouseInput::MouseButton::Undefined) { |
| 58 | params.Set("engine", "mouse"); | 58 | params.Set("engine", "mouse"); |
| 59 | params.Set("button", static_cast<u16>(pad.button)); | 59 | params.Set("button", static_cast<u16>(pad.button)); |
| 60 | params.Set("toggle", false); | ||
| 60 | return params; | 61 | return params; |
| 61 | } | 62 | } |
| 62 | } | 63 | } |