diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-01-19 15:33:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-19 15:33:31 +0100 |
commit | 10535e00161615214b0b8112717b62a6591fab54 (patch) | |
tree | be044d7f7f354643b7f29b7f95e20d685a8f96e2 | |
parent | Merge pull request #12695 from anpilley/user-arguments-v2 (diff) | |
parent | core: hid: Disable special features before disconnecting the controllers (diff) | |
download | yuzu-10535e00161615214b0b8112717b62a6591fab54.tar yuzu-10535e00161615214b0b8112717b62a6591fab54.tar.gz yuzu-10535e00161615214b0b8112717b62a6591fab54.tar.bz2 yuzu-10535e00161615214b0b8112717b62a6591fab54.tar.lz yuzu-10535e00161615214b0b8112717b62a6591fab54.tar.xz yuzu-10535e00161615214b0b8112717b62a6591fab54.tar.zst yuzu-10535e00161615214b0b8112717b62a6591fab54.zip |
-rw-r--r-- | src/hid_core/frontend/emulated_controller.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hid_core/frontend/emulated_controller.cpp b/src/hid_core/frontend/emulated_controller.cpp index 2ab93402d..b001cf2fd 100644 --- a/src/hid_core/frontend/emulated_controller.cpp +++ b/src/hid_core/frontend/emulated_controller.cpp @@ -110,6 +110,7 @@ void EmulatedController::ReloadFromSettings() { original_npad_type = npad_type; } + SetPollingMode(EmulatedDeviceIndex::RightIndex, Common::Input::PollingMode::Active); Disconnect(); if (player.connected) { Connect(); |