Increase timeout for exclusive attempt process

This commit is contained in:
Travis Nickles 2018-09-18 03:39:59 -05:00
parent 53ec1e2eef
commit 13005458f1

View File

@ -104,7 +104,7 @@ namespace DS4Windows
startInfo.Arguments = "re-enabledevice " + devicePathToInstanceId(hDevice.DevicePath); startInfo.Arguments = "re-enabledevice " + devicePathToInstanceId(hDevice.DevicePath);
Process child = Process.Start(startInfo); Process child = Process.Start(startInfo);
if (!child.WaitForExit(5000)) if (!child.WaitForExit(15000))
{ {
child.Kill(); child.Kill();
} }