Skip to content

Commit e64c7f0

Browse files
committed
Fixed double tap interval issue with Multi-Action Button special action
Related to issue Jays2Kings#556
1 parent 8c6cfa4 commit e64c7f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DS4Windows/DS4Control/Mapping.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,7 @@ private static async void MapCustomAction(int device, DS4State cState, DS4State
19501950
{
19511951
// pressed down
19521952
action.pastTime = DateTime.UtcNow;
1953-
if (action.pastTime <= (action.firstTap + TimeSpan.FromMilliseconds(100)))
1953+
if (action.pastTime <= (action.firstTap + TimeSpan.FromMilliseconds(150)))
19541954
{
19551955
action.tappedOnce = tappedOnce = false;
19561956
action.secondtouchbegin = secondtouchbegin = true;

0 commit comments

Comments
 (0)