diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-05-06 01:11:53 +0200 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-05-06 01:18:35 +0200 |
commit | f017335fef95d2cecc0fcda185f0e59cc1945101 (patch) | |
tree | 3c119e1e6f51506e039a519b0baf245ae9b41747 /src/input_common | |
parent | yuzu: Add motion preview to controller input (diff) | |
download | yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.gz yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.bz2 yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.lz yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.xz yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.zst yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.zip |
Diffstat (limited to 'src/input_common')
-rw-r--r-- | src/input_common/input_engine.cpp | 2 | ||||
-rw-r--r-- | src/input_common/input_poller.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/input_common/input_engine.cpp b/src/input_common/input_engine.cpp index 91aa96aa7..49f5e7f54 100644 --- a/src/input_common/input_engine.cpp +++ b/src/input_common/input_engine.cpp @@ -58,6 +58,8 @@ void InputEngine::SetHatButton(const PadIdentifier& identifier, int button, u8 v } void InputEngine::SetAxis(const PadIdentifier& identifier, int axis, f32 value) { + value /= 2.0f; + value -= 0.5f; { std::scoped_lock lock{mutex}; ControllerData& controller = controller_list.at(identifier); diff --git a/src/input_common/input_poller.cpp b/src/input_common/input_poller.cpp index 8c6a6521a..5c2c4a463 100644 --- a/src/input_common/input_poller.cpp +++ b/src/input_common/input_poller.cpp @@ -939,6 +939,7 @@ std::unique_ptr<Common::Input::InputDevice> InputFactory::CreateAnalogDevice( .threshold = std::clamp(params.Get("threshold", 0.5f), 0.0f, 1.0f), .offset = std::clamp(params.Get("offset", 0.0f), -1.0f, 1.0f), .inverted = params.Get("invert", "+") == "-", + .inverted_button = params.Get("inverted", false) != 0, .toggle = params.Get("toggle", false) != 0, }; input_engine->PreSetController(identifier); |