From 057a267fe8cdc9b5770a375188321bc218e7474e Mon Sep 17 00:00:00 2001 From: nastys <@> Date: Sat, 14 May 2022 12:59:57 +0200 Subject: [PATCH] [Launcher] Specific warning for AMD 21.5 --- source-code/source/plugins/Launcher/ui.h | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/source-code/source/plugins/Launcher/ui.h b/source-code/source/plugins/Launcher/ui.h index 5524f74..1fe244c 100644 --- a/source-code/source/plugins/Launcher/ui.h +++ b/source-code/source/plugins/Launcher/ui.h @@ -245,10 +245,19 @@ namespace Launcher { { if (wineVersion == "" && (driver_version_major < 21 || (driver_version_major == 21 && driver_version_minor < 6))) { - this->labelGPU->Text += L"Driver has known issues."; - GPUIssueText = L"The graphics driver you're using has known issues. Please install the latest driver from your GPU vendor's website."; + if (driver_version_minor == 5) + { + this->labelGPU->Text += L"Driver may have issues."; + GPUIssueText = L"The graphics driver you're using should be able to play movies without issues, but may crash while loading a song after playing multiple stages in one session.\nIf possible, please install the latest driver from your GPU vendor's website.\nHowever, note that if your GPU is old, you may not be able to install a more recent driver."; + } + else + { + this->labelGPU->Text += L"Driver has known issues."; + GPUIssueText = L"The graphics driver you're using has known issues. Movies may not play back correctly.\nPlease install the latest driver from your GPU vendor's website."; + showGpuDialog = true; + } + this->labelGPU->LinkColor = System::Drawing::Color::Orange; - showGpuDialog = true; } else {