diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-30 16:54:35 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-30 16:54:35 -0800 |
commit | 667a8ae163681f68d90010bc7dd05eb7398524d6 (patch) | |
tree | dea803db312fc0e36c5ed2c9000cacf3bd4df7c3 /src/yuzu/applets/qt_controller.cpp | |
parent | 5e5827190374946cc906da3a5d2aa586a9721ba0 (diff) | |
parent | 9ee5c4ec5629c185d29dd41468047004acef2e29 (diff) |
Merge pull request #7647 from german77/toad
core/hid: Fix controller type validation
Diffstat (limited to 'src/yuzu/applets/qt_controller.cpp')
-rw-r--r-- | src/yuzu/applets/qt_controller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/applets/qt_controller.cpp b/src/yuzu/applets/qt_controller.cpp index c6222b571..d63193131 100644 --- a/src/yuzu/applets/qt_controller.cpp +++ b/src/yuzu/applets/qt_controller.cpp @@ -33,7 +33,7 @@ void UpdateController(Core::HID::EmulatedController* controller, } controller->SetNpadStyleIndex(controller_type); if (connected) { - controller->Connect(); + controller->Connect(true); } } |