From 422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3 Mon Sep 17 00:00:00 2001 From: lat9nq Date: Mon, 30 May 2022 01:02:56 -0400 Subject: [PATCH] main: Insert warning text on broken Vulkan Co-authored-by: Schplee <24275329+Schplee@users.noreply.github.com> --- src/yuzu/main.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 1fd9af942d..d557339329 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -301,7 +301,12 @@ GMainWindow::GMainWindow() if (!CheckVulkan()) { config->Save(); - QMessageBox::warning(this, tr("Broken Vulkan Installation Detected"), tr("")); + QMessageBox::warning( + this, tr("Broken Vulkan Installation Detected"), + tr("Vulkan initialization failed on the previous boot.

Click here for " + "instructions to fix the issue.")); } if (UISettings::values.has_broken_vulkan) { Settings::values.renderer_backend = Settings::RendererBackend::OpenGL;