mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
Fixed double tap interval issue with Multi-Action Button special action
Related to issue #556
This commit is contained in:
parent
8c6cfa4c13
commit
e64c7f0455
@ -1950,7 +1950,7 @@ namespace DS4Windows
|
||||
{
|
||||
// pressed down
|
||||
action.pastTime = DateTime.UtcNow;
|
||||
if (action.pastTime <= (action.firstTap + TimeSpan.FromMilliseconds(100)))
|
||||
if (action.pastTime <= (action.firstTap + TimeSpan.FromMilliseconds(150)))
|
||||
{
|
||||
action.tappedOnce = tappedOnce = false;
|
||||
action.secondtouchbegin = secondtouchbegin = true;
|
||||
|
Loading…
Reference in New Issue
Block a user