소스 검색

Merge pull request #7465 from german77/no_input

qt_controller: Fix input when the controller applet is ignored
Morph 4 년 전
부모
커밋
614702488f
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/yuzu/applets/qt_controller.cpp

+ 3 - 0
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;
     }