summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/npad.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-05-08 01:06:10 +0200
committerGitHub <noreply@github.com>2023-05-08 01:06:10 +0200
commit8f605b542cf8cc1145364095d7af5b9af5c109c4 (patch)
tree0a9d3093c5729001ae0937db07b6a847feb6da13 /src/core/hle/service/hid/controllers/npad.cpp
parentMerge pull request #10155 from FernandoS27/reactive-flushing-new (diff)
parentcore: hid: Update motion on a better place (diff)
downloadyuzu-8f605b542cf8cc1145364095d7af5b9af5c109c4.tar
yuzu-8f605b542cf8cc1145364095d7af5b9af5c109c4.tar.gz
yuzu-8f605b542cf8cc1145364095d7af5b9af5c109c4.tar.bz2
yuzu-8f605b542cf8cc1145364095d7af5b9af5c109c4.tar.lz
yuzu-8f605b542cf8cc1145364095d7af5b9af5c109c4.tar.xz
yuzu-8f605b542cf8cc1145364095d7af5b9af5c109c4.tar.zst
yuzu-8f605b542cf8cc1145364095d7af5b9af5c109c4.zip
Diffstat (limited to 'src/core/hle/service/hid/controllers/npad.cpp')
-rw-r--r--src/core/hle/service/hid/controllers/npad.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp
index 8abf71608..ef4aec4ea 100644
--- a/src/core/hle/service/hid/controllers/npad.cpp
+++ b/src/core/hle/service/hid/controllers/npad.cpp
@@ -423,8 +423,8 @@ void Controller_NPad::RequestPadStateUpdate(Core::HID::NpadIdType npad_id) {
return;
}
- // This function is unique to yuzu for the turbo buttons to work properly
- controller.device->TurboButtonUpdate();
+ // This function is unique to yuzu for the turbo buttons and motion to work properly
+ controller.device->StatusUpdate();
auto& pad_entry = controller.npad_pad_state;
auto& trigger_entry = controller.npad_trigger_state;