Removed deprecated flag for updater. Now set updater to auto launch DS4Windows after update

Related to issue #217.
This commit is contained in:
Travis Nickles 2018-02-12 00:40:34 -06:00
parent 4cb0548947
commit fa69b8cd1f

View File

@ -710,7 +710,7 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
Process p = new Process(); Process p = new Process();
p.StartInfo.FileName = exepath + "\\DS4Updater.exe"; p.StartInfo.FileName = exepath + "\\DS4Updater.exe";
p.StartInfo.Arguments = "-skipLang"; p.StartInfo.Arguments = "-autolaunch";
if (AdminNeeded()) if (AdminNeeded())
p.StartInfo.Verb = "runas"; p.StartInfo.Verb = "runas";
@ -2017,7 +2017,7 @@ Properties.Resources.DS4Update, MessageBoxButtons.YesNo, MessageBoxIcon.Question
Process p = new Process(); Process p = new Process();
p.StartInfo.FileName = exepath + "\\DS4Updater.exe"; p.StartInfo.FileName = exepath + "\\DS4Updater.exe";
p.StartInfo.Arguments = "-skipLang"; p.StartInfo.Arguments = "-autolaunch";
if (AdminNeeded()) if (AdminNeeded())
p.StartInfo.Verb = "runas"; p.StartInfo.Verb = "runas";