Fixed double tap interval issue with Multi-Action Button special action

Related to issue #556
This commit is contained in:
Travis Nickles 2019-02-07 22:56:07 -06:00
parent 8c6cfa4c13
commit e64c7f0455

View File

@ -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;