From 5c6deb902cebf79f22bba85af37e9b16fb2d93dc Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sun, 17 Dec 2023 19:33:46 +0100 Subject: [PATCH] Added G15 2022 to the list of devies with enabling GPU on shutdown https://github.com/seerge/g-helper/issues/1755 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index a42ee710..ad0732c2 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -428,7 +428,7 @@ public static class AppConfig public static bool IsGPUFixNeeded() { - return ContainsModel("GA402X") || ContainsModel("GV302") || ContainsModel("GV301") || ContainsModel("GZ301") || ContainsModel("FX506") || ContainsModel("GU603") || ContainsModel("GU604") || ContainsModel("G614J"); + return ContainsModel("GA402X") || ContainsModel("GV302") || ContainsModel("GV301") || ContainsModel("GZ301") || ContainsModel("FX506") || ContainsModel("GU603") || ContainsModel("GU604") || ContainsModel("G614J") || ContainsModel("GA503"); } public static bool IsGPUFix()