diff options
| author | 2021-08-08 02:44:42 -0700 | |
|---|---|---|
| committer | 2021-08-08 02:44:42 -0700 | |
| commit | b023413c98ceba2bc640f940d272f9d7c70f4139 (patch) | |
| tree | 1f842bf935fbbf49d646d7e58015ebff29aa6aa2 /src/input_common/mouse | |
| parent | Merge pull request #6817 from gidoly/patch-1 (diff) | |
| parent | input_common: Improve SDL joystick and hide toggle option (diff) | |
| download | yuzu-b023413c98ceba2bc640f940d272f9d7c70f4139.tar.gz yuzu-b023413c98ceba2bc640f940d272f9d7c70f4139.tar.xz yuzu-b023413c98ceba2bc640f940d272f9d7c70f4139.zip | |
Merge pull request #6698 from german77/SDL_QoL
input_common: Improve SDL joystick and hide toggle option
Diffstat (limited to 'src/input_common/mouse')
| -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 | } |