diff options
| author | 2022-01-17 11:31:38 +0300 | |
|---|---|---|
| committer | 2022-01-17 11:31:38 +0300 | |
| commit | a99f84f4b2856869927479dc352caf6eb0fd50ff (patch) | |
| tree | b1e5d11c091c7e2a001e2a57c33d841c0afd5acc /src/input_common/drivers/mouse.cpp | |
| parent | Merge pull request #7713 from gidoly/patch-3 (diff) | |
| download | yuzu-a99f84f4b2856869927479dc352caf6eb0fd50ff.tar.gz yuzu-a99f84f4b2856869927479dc352caf6eb0fd50ff.tar.xz yuzu-a99f84f4b2856869927479dc352caf6eb0fd50ff.zip | |
input_common: fix copy-paste error
Found by static analysis with PVS-Studio.
Diffstat (limited to 'src/input_common/drivers/mouse.cpp')
| -rw-r--r-- | src/input_common/drivers/mouse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/mouse.cpp b/src/input_common/drivers/mouse.cpp index aa69216c8..ac61591b0 100644 --- a/src/input_common/drivers/mouse.cpp +++ b/src/input_common/drivers/mouse.cpp | |||
| @@ -31,7 +31,7 @@ Mouse::Mouse(std::string input_engine_) : InputEngine(std::move(input_engine_)) | |||
| 31 | PreSetAxis(identifier, wheel_axis_x); | 31 | PreSetAxis(identifier, wheel_axis_x); |
| 32 | PreSetAxis(identifier, wheel_axis_y); | 32 | PreSetAxis(identifier, wheel_axis_y); |
| 33 | PreSetAxis(identifier, touch_axis_x); | 33 | PreSetAxis(identifier, touch_axis_x); |
| 34 | PreSetAxis(identifier, touch_axis_x); | 34 | PreSetAxis(identifier, touch_axis_y); |
| 35 | update_thread = std::jthread([this](std::stop_token stop_token) { UpdateThread(stop_token); }); | 35 | update_thread = std::jthread([this](std::stop_token stop_token) { UpdateThread(stop_token); }); |
| 36 | } | 36 | } |
| 37 | 37 | ||