diff options
| author | 2022-09-11 08:56:12 -0500 | |
|---|---|---|
| committer | 2022-09-11 08:58:06 -0500 | |
| commit | 5d907d9acd3cf767eaca8023ff5d8d7b9e2a10ba (patch) | |
| tree | 7640c2d8e12f1e436c50eacb693eb51561a8dfd3 /src | |
| parent | Merge pull request #8819 from liamwhite/cash-money (diff) | |
| download | yuzu-5d907d9acd3cf767eaca8023ff5d8d7b9e2a10ba.tar.gz yuzu-5d907d9acd3cf767eaca8023ff5d8d7b9e2a10ba.tar.xz yuzu-5d907d9acd3cf767eaca8023ff5d8d7b9e2a10ba.zip | |
input_common: Increase mapping timer from 2.5 seconds to 4 seconds
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 109689c88..4646a94f5 100644 --- a/src/yuzu/configuration/configure_input_player.cpp +++ b/src/yuzu/configuration/configure_input_player.cpp | |||
| @@ -1410,7 +1410,7 @@ void ConfigureInputPlayer::HandleClick( | |||
| 1410 | ui->controllerFrame->BeginMappingAnalog(button_id); | 1410 | ui->controllerFrame->BeginMappingAnalog(button_id); |
| 1411 | } | 1411 | } |
| 1412 | 1412 | ||
| 1413 | timeout_timer->start(2500); // Cancel after 2.5 seconds | 1413 | timeout_timer->start(4000); // Cancel after 4 seconds |
| 1414 | poll_timer->start(25); // Check for new inputs every 25ms | 1414 | poll_timer->start(25); // Check for new inputs every 25ms |
| 1415 | } | 1415 | } |
| 1416 | 1416 | ||