From 489616d255a9c98c5d7c74a84b412e95322ba6d6 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Thu, 26 Sep 2024 13:22:21 +0200 Subject: [PATCH] Option to disable "gpu_mode_force_set" for GA503 https://github.com/seerge/g-helper/issues/3175 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 10487030..aed38f66 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -640,7 +640,7 @@ public static class AppConfig public static bool IsForceSetGPUMode() { - return Is("gpu_mode_force_set") || ContainsModel("503"); + return Is("gpu_mode_force_set") || (ContainsModel("503") && IsNotFalse("gpu_mode_force_set")); } public static bool IsNoGPUModes()