diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-06 23:09:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-06 23:09:55 -0400 |
| commit | 9c9b4616c3eda641f3d370758587fa776fa1a87e (patch) | |
| tree | d081194e1ea0b673a1cc01f7c00846374da70594 /src/core/hid/input_converter.cpp | |
| parent | e7b6389e44f23e8337db169e72a040a2c1a0ebbd (diff) | |
| parent | f017335fef95d2cecc0fcda185f0e59cc1945101 (diff) | |
Merge pull request #10167 from german77/motion_preview
yuzu: Add motion preview to controller input
Diffstat (limited to 'src/core/hid/input_converter.cpp')
| -rw-r--r-- | src/core/hid/input_converter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hid/input_converter.cpp b/src/core/hid/input_converter.cpp index 7cee39a53..a38e3bb3f 100644 --- a/src/core/hid/input_converter.cpp +++ b/src/core/hid/input_converter.cpp @@ -54,6 +54,7 @@ Common::Input::ButtonStatus TransformToButton(const Common::Input::CallbackStatu case Common::Input::InputType::Analog: status.value = TransformToTrigger(callback).pressed.value; status.toggle = callback.analog_status.properties.toggle; + status.inverted = callback.analog_status.properties.inverted_button; break; case Common::Input::InputType::Trigger: status.value = TransformToTrigger(callback).pressed.value; |
