diff --git a/app/Gpu/GPUModeControl.cs b/app/Gpu/GPUModeControl.cs index cab5b4f8..43101e0e 100644 --- a/app/Gpu/GPUModeControl.cs +++ b/app/Gpu/GPUModeControl.cs @@ -297,7 +297,6 @@ namespace GHelper.Gpu { XGM.Reset(); HardwareControl.KillGPUApps(); - await Task.Delay(TimeSpan.FromSeconds(1)); if (silent) { diff --git a/app/HardwareControl.cs b/app/HardwareControl.cs index ae3e5f1e..f8688ea2 100644 --- a/app/HardwareControl.cs +++ b/app/HardwareControl.cs @@ -305,7 +305,8 @@ public static class HardwareControl public static void KillGPUApps() { - List tokill = new() { "EADesktop", "RadeonSoftware", "epicgameslauncher", "ASUSSmartDisplayControl" }; + List tokill = new() { "EADesktop", "epicgameslauncher", "ASUSSmartDisplayControl" }; + foreach (string kill in tokill) ProcessHelper.KillByName(kill); if (AppConfig.Is("kill_gpu_apps") && GpuControl is not null)