From 741d9cf1e2b627172706e9d3f6accd256e581ad9 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 6 Aug 2024 23:08:43 +0200 Subject: [PATCH] Removed unsupported RGB modes for A16 https://github.com/seerge/g-helper/discussions/2922 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 4a403c3c..f888e6d3 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -402,7 +402,7 @@ public static class AppConfig public static bool IsSingleColor() { - return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM() || ContainsModel("GA502IU"); + return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM() || ContainsModel("GA502IU") || ContainsModel("FA617N") || ContainsModel("FA617X"); } public static bool IsSlash()