From 74e67f7a01a28d446fa2866c1b58386e56c28fa5 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 18 Jul 2023 16:56:54 +0200 Subject: [PATCH] Added GA402XV to the list of devices that require fan curve for PPTs --- app/Mode/ModeControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Mode/ModeControl.cs b/app/Mode/ModeControl.cs index fe4b5db9..b0e91785 100644 --- a/app/Mode/ModeControl.cs +++ b/app/Mode/ModeControl.cs @@ -172,7 +172,7 @@ namespace GHelper.Mode private static bool IsFanRequired() { - return AppConfig.ContainsModel("GA402XI") || AppConfig.ContainsModel("G513"); + return AppConfig.ContainsModel("GA402XI") || AppConfig.ContainsModel("GA402XV") || AppConfig.ContainsModel("G513"); } public void AutoPower(int delay = 0)