diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-12-21 10:46:19 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-01-01 06:39:24 -0500 |
commit | 904ac1daec186a98c33f2e8ac140d919ca8fe0a7 (patch) | |
tree | 0c525192706039bd757264fdf0cf8b87d322ee7a /src/yuzu/applets/controller.cpp | |
parent | da07977db0b71e52f5870e3adf8c2fa0ada3c706 (diff) |
configure_input: Modify controller connection delay
Increases the controller connection delay to 60ms and refactors it to attempt to disconnect all controllers prior to connecting all controllers in HID.
Diffstat (limited to 'src/yuzu/applets/controller.cpp')
-rw-r--r-- | src/yuzu/applets/controller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/applets/controller.cpp b/src/yuzu/applets/controller.cpp index a15e8ca2a3..c680fd2c21 100644 --- a/src/yuzu/applets/controller.cpp +++ b/src/yuzu/applets/controller.cpp @@ -535,7 +535,7 @@ void QtControllerSelectorDialog::UpdateControllerState(std::size_t player_index) // This emulates a delay between disconnecting and reconnecting controllers as some games // do not respond to a change in controller type if it was instantaneous. using namespace std::chrono_literals; - std::this_thread::sleep_for(20ms); + std::this_thread::sleep_for(60ms); UpdateController(controller_type, player_index, player_connected); } |