From b1eaaf2a507f950cc1367bebc79549f8306d3c53 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Mon, 29 Nov 2021 14:33:11 +0100 Subject: [PATCH] early-access version 2255 --- README.md | 2 +- src/yuzu/applets/qt_controller.cpp | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 555a6f140..9c2c8409f 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2254. +This is the source code for early-access 2255. ## Legal Notice diff --git a/src/yuzu/applets/qt_controller.cpp b/src/yuzu/applets/qt_controller.cpp index 0158b49a8..cf1f1cda6 100755 --- a/src/yuzu/applets/qt_controller.cpp +++ b/src/yuzu/applets/qt_controller.cpp @@ -215,6 +215,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; }