aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-11-28 21:03:42 -0600
committergerman77 <juangerman-13@hotmail.com>2021-11-28 21:03:42 -0600
commitdcc468555758531016eec2ba61bbc5dfdc86f6f6 (patch)
tree433efe0f7414aaa09d19006b3c0cd500fa8e0328
parent3031223153d2b11d089acf5c50718372b5c24b6b (diff)
qt_controller: Fix input when the controller applet is ignored
-rw-r--r--src/yuzu/applets/qt_controller.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/applets/qt_controller.cpp b/src/yuzu/applets/qt_controller.cpp
index 589e0577a0..7e80e7836e 100644
--- a/src/yuzu/applets/qt_controller.cpp
+++ b/src/yuzu/applets/qt_controller.cpp
@@ -205,6 +205,9 @@ QtControllerSelectorDialog::QtControllerSelectorDialog(
// If all the parameters are met AND only allows a single player,
// stop the constructor here as we do not need to continue.
if (CheckIfParametersMet() && parameters.enable_single_mode) {
+ for (std::size_t player_index = 0; player_index < NUM_PLAYERS; ++player_index) {
+ system.HIDCore().GetEmulatedControllerByIndex(player_index)->DisableConfiguration();
+ }
return;
}