Add sleep period before hotplug routine

Needed for first output report to be received
This commit is contained in:
Travis Nickles 2017-08-26 06:28:42 -05:00
parent 6190ddff9b
commit e6df8c939e

View File

@ -1029,7 +1029,7 @@ namespace DS4Windows
if (!inHotPlug) if (!inHotPlug)
{ {
inHotPlug = true; inHotPlug = true;
TaskRunner.Run(() => { InnerHotplug2(uiContext); }); TaskRunner.Run(() => { Thread.Sleep(10); InnerHotplug2(uiContext); });
} }
} }
} }