diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-07 19:06:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-07 19:06:10 -0400 |
| commit | 8f605b542cf8cc1145364095d7af5b9af5c109c4 (patch) | |
| tree | 0a9d3093c5729001ae0937db07b6a847feb6da13 /src/core/hle | |
| parent | 2688fb1aa2d80fc4edac87ff93365f3570cd3af8 (diff) | |
| parent | cf023aa8ec93193d4827b3034c9e7d35a0edfc2a (diff) | |
Merge pull request #10195 from german77/mutex
core: hid: Update motion on a better place
Diffstat (limited to 'src/core/hle')
| -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; |
