mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
Added minor check if timer needs to be run
This commit is contained in:
parent
cde7d19c80
commit
34d2d74415
@ -87,17 +87,26 @@ namespace DS4WinWPF.DS4Forms
|
|||||||
{
|
{
|
||||||
File.Move(tempInstFileName, filename);
|
File.Move(tempInstFileName, filename);
|
||||||
}
|
}
|
||||||
|
success = false; // Reset for later check
|
||||||
|
|
||||||
if (File.Exists(DS4Windows.Global.exedirpath + $"\\{InstFileName}"))
|
if (File.Exists(DS4Windows.Global.exedirpath + $"\\{InstFileName}"))
|
||||||
{
|
{
|
||||||
//vigemInstallBtn.Content = Properties.Resources.OpeningInstaller;
|
//vigemInstallBtn.Content = Properties.Resources.OpeningInstaller;
|
||||||
monitorProc = Process.Start(DS4Windows.Global.exedirpath + $"\\{InstFileName}");
|
monitorProc = Process.Start(DS4Windows.Global.exedirpath + $"\\{InstFileName}");
|
||||||
vigemInstallBtn.Content = Properties.Resources.Installing;
|
vigemInstallBtn.Content = Properties.Resources.Installing;
|
||||||
|
success = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
monitorTimer = new NonFormTimer();
|
if (success)
|
||||||
monitorTimer.Elapsed += ViGEmInstallTimer_Tick;
|
{
|
||||||
monitorTimer.Start();
|
monitorTimer = new NonFormTimer();
|
||||||
|
monitorTimer.Elapsed += ViGEmInstallTimer_Tick;
|
||||||
|
monitorTimer.Start();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
vigemInstallBtn.Content = Properties.Resources.InstallFailed;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ViGEmInstallTimer_Tick(object sender, System.Timers.ElapsedEventArgs e)
|
private void ViGEmInstallTimer_Tick(object sender, System.Timers.ElapsedEventArgs e)
|
||||||
|
Loading…
Reference in New Issue
Block a user