From 5ff8479d8037503ed460010699b839103dc48133 Mon Sep 17 00:00:00 2001 From: fyr77 Date: Fri, 23 Feb 2024 20:36:05 +0100 Subject: [PATCH] fix non-gtx detection --- EnvyUpdate/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvyUpdate/Util.cs b/EnvyUpdate/Util.cs index c2f6711..c1ec102 100644 --- a/EnvyUpdate/Util.cs +++ b/EnvyUpdate/Util.cs @@ -335,7 +335,7 @@ namespace EnvyUpdate { GPUName = obj["VideoProcessor"].ToString().ToLower(); // Remove any 3GB, 6GB or similar from name. We don't need to know the VRAM to get results. - GPUName = Regex.Match(GPUName, "(geforce )((.tx )|(mx))?\\w*\\d*( ti)?").Value; + GPUName = Regex.Match(GPUName, "(geforce )((.t.? )|(mx ))?\\w*\\d*( ti)?").Value; } else GPUName = obj["VideoProcessor"].ToString();