From 541112e1881f01c6a10b3da895d31d9dd8da30eb Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Sun, 27 Oct 2019 22:16:07 -0500 Subject: [PATCH] Fixed old bug when checking for updater Could have caused a thread lock --- DS4Windows/DS4Forms/DS4Form.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index 514e6f5..7a2041d 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -555,6 +555,7 @@ namespace DS4Windows.Forms while (processes.Length > 0) { Thread.Sleep(500); + processes = Process.GetProcessesByName("DS4Updater"); } File.Delete(exepath + "\\DS4Updater.exe");