diff options
author | Mai <mathew1800@gmail.com> | 2022-09-13 05:30:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 05:30:51 +0200 |
commit | 1be456db83393859001b19969b4b359da43d9327 (patch) | |
tree | 9f2c6757b2faf5f612c0adf550db45ca99c4c9d1 /src | |
parent | Merge pull request #8891 from Kelebek1/pragma (diff) | |
parent | input_common: Increase mapping timer from 2.5 seconds to 4 seconds (diff) | |
download | yuzu-1be456db83393859001b19969b4b359da43d9327.tar yuzu-1be456db83393859001b19969b4b359da43d9327.tar.gz yuzu-1be456db83393859001b19969b4b359da43d9327.tar.bz2 yuzu-1be456db83393859001b19969b4b359da43d9327.tar.lz yuzu-1be456db83393859001b19969b4b359da43d9327.tar.xz yuzu-1be456db83393859001b19969b4b359da43d9327.tar.zst yuzu-1be456db83393859001b19969b4b359da43d9327.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/configuration/configure_input_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_input_player.cpp b/src/yuzu/configuration/configure_input_player.cpp index 9b4f765ce..9e5a40fe7 100644 --- a/src/yuzu/configuration/configure_input_player.cpp +++ b/src/yuzu/configuration/configure_input_player.cpp @@ -1417,7 +1417,7 @@ void ConfigureInputPlayer::HandleClick( ui->controllerFrame->BeginMappingAnalog(button_id); } - timeout_timer->start(2500); // Cancel after 2.5 seconds + timeout_timer->start(4000); // Cancel after 4 seconds poll_timer->start(25); // Check for new inputs every 25ms } |