diff --git a/EnvyUpdate/Util.cs b/EnvyUpdate/Util.cs index c8842f6..d729681 100644 --- a/EnvyUpdate/Util.cs +++ b/EnvyUpdate/Util.cs @@ -299,6 +299,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.Replace(GPUName, " \\d+gb", ""); + GPUName = Regex.Replace(GPUName, " max-q", ""); GPUName = Regex.Replace(GPUName, "nvidia ", ""); } else @@ -453,4 +454,4 @@ namespace EnvyUpdate //TODO implement progress bar } } -} \ No newline at end of file +}