From 69757ff46023d676c22fcee9a9bdde94551629f2 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Fri, 17 Nov 2023 11:03:42 +0100 Subject: [PATCH] Remove unsupported RGB modes for G513RM https://github.com/seerge/g-helper/issues/1603 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 097e6da6..c5ba2b3e 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -355,7 +355,7 @@ public static class AppConfig public static bool IsStrixLimitedRGB() { - return ContainsModel("G614JV") || ContainsModel("G614JZ") || ContainsModel("G512LI") || ContainsModel("G513RS"); + return ContainsModel("G614JV") || ContainsModel("G614JZ") || ContainsModel("G512LI") || ContainsModel("G513RS") || ContainsModel("G513RM"); } public static bool IsZ13()