diff options
author | german77 <juangerman-13@hotmail.com> | 2022-02-06 18:46:54 -0600 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2022-02-06 19:56:03 -0600 |
commit | 6a4ab3e0d25dcc5b37cc146f99cf167dc4e8a6b6 (patch) | |
tree | 22aba4c6a3a031eb66cae703ac8b640f1afef148 /src/input_common/input_poller.cpp | |
parent | b720009dc0641a0899d9be347c892472a6916ef5 (diff) |
yuzu: Add auto center on right click
Diffstat (limited to 'src/input_common/input_poller.cpp')
-rw-r--r-- | src/input_common/input_poller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/input_poller.cpp b/src/input_common/input_poller.cpp index 2f3c0735a..7f3c08597 100644 --- a/src/input_common/input_poller.cpp +++ b/src/input_common/input_poller.cpp @@ -181,7 +181,7 @@ public: .raw_value = input_engine->GetAxis(identifier, axis_y), .properties = properties_y, }; - // This is a workaround too keep compatibility with old yuzu versions. Vertical axis is + // This is a workaround to keep compatibility with old yuzu versions. Vertical axis is // inverted on SDL compared to Nintendo if (invert_axis_y) { status.y.raw_value = -status.y.raw_value; |