diff options
author | Mai M <mathew1800@gmail.com> | 2022-01-17 19:43:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 19:43:21 +0100 |
commit | b92198b7f817be9b212596f3b4c5c5655e39719a (patch) | |
tree | d0ce104c2afd1b16eceecfb5425c2db55379aea5 /src | |
parent | Merge pull request #7728 from v1993/patch-4 (diff) | |
parent | input_common: fix copy-paste error (diff) | |
download | yuzu-b92198b7f817be9b212596f3b4c5c5655e39719a.tar yuzu-b92198b7f817be9b212596f3b4c5c5655e39719a.tar.gz yuzu-b92198b7f817be9b212596f3b4c5c5655e39719a.tar.bz2 yuzu-b92198b7f817be9b212596f3b4c5c5655e39719a.tar.lz yuzu-b92198b7f817be9b212596f3b4c5c5655e39719a.tar.xz yuzu-b92198b7f817be9b212596f3b4c5c5655e39719a.tar.zst yuzu-b92198b7f817be9b212596f3b4c5c5655e39719a.zip |
Diffstat (limited to 'src')
-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_)) PreSetAxis(identifier, wheel_axis_x); PreSetAxis(identifier, wheel_axis_y); PreSetAxis(identifier, touch_axis_x); - PreSetAxis(identifier, touch_axis_x); + PreSetAxis(identifier, touch_axis_y); update_thread = std::jthread([this](std::stop_token stop_token) { UpdateThread(stop_token); }); } |