From fa69b8cd1f49cd12a09aaa343b92a988f7e4cd58 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Mon, 12 Feb 2018 00:40:34 -0600 Subject: [PATCH] Removed deprecated flag for updater. Now set updater to auto launch DS4Windows after update Related to issue #217. --- DS4Windows/DS4Forms/DS4Form.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index 78b2ea4..56e8d28 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -710,7 +710,7 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question Process p = new Process(); p.StartInfo.FileName = exepath + "\\DS4Updater.exe"; - p.StartInfo.Arguments = "-skipLang"; + p.StartInfo.Arguments = "-autolaunch"; if (AdminNeeded()) p.StartInfo.Verb = "runas"; @@ -2017,7 +2017,7 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question Process p = new Process(); p.StartInfo.FileName = exepath + "\\DS4Updater.exe"; - p.StartInfo.Arguments = "-skipLang"; + p.StartInfo.Arguments = "-autolaunch"; if (AdminNeeded()) p.StartInfo.Verb = "runas";