From 4b42106c31cfa35e350a6af6daa491c461ebc58b Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Thu, 11 Apr 2024 15:06:00 +0200 Subject: [PATCH] Added G614J / G814J to the list of devices that require fans curve to be applied in order to make custom power liimits work --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index d59c2c7e..9b4a989f 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -553,7 +553,7 @@ public static class AppConfig public static bool IsFanRequired() { - return ContainsModel("GA402X") || ContainsModel("G513") || ContainsModel("G713R") || ContainsModel("G713P") || ContainsModel("GU605") || ContainsModel("GA403") || ContainsModel("G634J") || ContainsModel("G834J"); + return ContainsModel("GA402X") || ContainsModel("G513") || ContainsModel("G713R") || ContainsModel("G713P") || ContainsModel("GU605") || ContainsModel("GA403") || ContainsModel("G634J") || ContainsModel("G834J") || ContainsModel("G614J") || ContainsModel("G814J"); } public static bool IsAMDLight()