bump recommended amd driver version

fixes #936
This commit is contained in:
13xforever 2023-09-19 11:45:46 +05:00
parent ba5c79ea62
commit 5419938ac1
No known key found for this signature in database
GPG Key ID: 2B2A36B482FE70C5
2 changed files with 2 additions and 3 deletions

View File

@ -313,7 +313,7 @@ internal static partial class LogParserResult
else if (driverVersionString.Contains("older than", StringComparison.InvariantCultureIgnoreCase))
{
if (IsAmd(gpuInfo))
notes.Add($"❗ Please update your AMD GPU driver to version {AmdLastGoodOpenGLWindowsVersion} or newer");
notes.Add($"❗ Please update your AMD GPU driver to version {AmdRecommendedOldWindowsVersion} or newer");
}
}
}

View File

@ -65,8 +65,7 @@ internal static partial class LogParserResult
private static readonly Version NvidiaRecommendedWindowsVersion = new(512, 16);
private static readonly Version NvidiaRecommendedLinuxVersion = new(515, 57);
private static readonly Version AmdRecommendedOldWindowsVersion = new(22, 5, 2);
private static readonly Version AmdLastGoodOpenGLWindowsVersion = new(22, 5, 2);
private static readonly Version AmdRecommendedOldWindowsVersion = new(23, 2, 1);
private static readonly Version NvidiaFullscreenBugFixed = new(0, 0, 6, 8204);
private static readonly Version TsxFaFixedVersion = new(0, 0, 12, 10995);