diff --git a/app/HardwareMonitor.cs b/app/HardwareMonitor.cs index 53aea845..f4169a08 100644 --- a/app/HardwareMonitor.cs +++ b/app/HardwareMonitor.cs @@ -120,9 +120,14 @@ public static class HardwareMonitor } } - public static bool IsUsedGPU(int threshold = 50) + public static bool IsUsedGPU(int threshold = 20) { - return (GetGpuUse() > threshold); + if (GetGpuUse() > threshold) + { + Thread.Sleep(1000); + return (GetGpuUse() > threshold); + } else + return false; } public static void RecreateGpuTemperatureProviderWithDelay()