summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar german772023-05-07 16:38:41 -0600
committerGravatar german772023-05-07 17:01:57 -0600
commitcf023aa8ec93193d4827b3034c9e7d35a0edfc2a (patch)
tree66c90375ec6d8a8f1bae96e8c6fc9194b8407756 /src/core/hle
parentMerge pull request #10097 from german77/nfp_full (diff)
downloadyuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar.gz
yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar.xz
yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.zip
core: hid: Update motion on a better place
Diffstat (limited to 'src/core/hle')
-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) {
423 return; 423 return;
424 } 424 }
425 425
426 // This function is unique to yuzu for the turbo buttons to work properly 426 // This function is unique to yuzu for the turbo buttons and motion to work properly
427 controller.device->TurboButtonUpdate(); 427 controller.device->StatusUpdate();
428 428
429 auto& pad_entry = controller.npad_pad_state; 429 auto& pad_entry = controller.npad_pad_state;
430 auto& trigger_entry = controller.npad_trigger_state; 430 auto& trigger_entry = controller.npad_trigger_state;