From 94a4fff52b74570f73ab5467fbaf0f22bb0bf95c Mon Sep 17 00:00:00 2001 From: Jakob Date: Sat, 1 Apr 2023 20:01:58 +0200 Subject: [PATCH] fix regex for ti --- EnvyUpdate/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvyUpdate/Util.cs b/EnvyUpdate/Util.cs index c47627e..572ae2d 100644 --- a/EnvyUpdate/Util.cs +++ b/EnvyUpdate/Util.cs @@ -298,7 +298,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 \\w*\\d*").Value; + GPUName = Regex.Match(GPUName, "(geforce )?.tx \\w*\\d*( ti)?").Value; } else GPUName = obj["VideoProcessor"].ToString();