diff options
author | german77 <juangerman-13@hotmail.com> | 2023-05-08 00:38:41 +0200 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2023-05-08 01:01:57 +0200 |
commit | cf023aa8ec93193d4827b3034c9e7d35a0edfc2a (patch) | |
tree | 66c90375ec6d8a8f1bae96e8c6fc9194b8407756 /src/core/hle/service/hid | |
parent | Merge pull request #10097 from german77/nfp_full (diff) | |
download | yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar.gz yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar.bz2 yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar.lz yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar.xz yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.tar.zst yuzu-cf023aa8ec93193d4827b3034c9e7d35a0edfc2a.zip |
Diffstat (limited to 'src/core/hle/service/hid')
-rw-r--r-- | src/core/hle/service/hid/controllers/npad.cpp | 4 |
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; |