summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <lat9nq@gmail.com>2022-05-30 07:02:56 +0200
committerlat9nq <lat9nq@gmail.com>2022-05-30 16:58:19 +0200
commit422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3 (patch)
tree973d556093d83a265188ae12ee7ab12b19a143ca
parentmain: Save config on broken Vulkan detect (diff)
downloadyuzu-422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3.tar
yuzu-422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3.tar.gz
yuzu-422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3.tar.bz2
yuzu-422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3.tar.lz
yuzu-422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3.tar.xz
yuzu-422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3.tar.zst
yuzu-422525e3fbb0b14f93a9ef5883bd3d3d5dae6ab3.zip
-rw-r--r--src/yuzu/main.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 1fd9af942..d55733932 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.<br><br>Click <a "
+ "href='https://yuzu-emu.org/wiki/faq/"
+ "#yuzu-starts-with-the-error-broken-vulkan-installation-detected'>here for "
+ "instructions to fix the issue</a>."));
}
if (UISettings::values.has_broken_vulkan) {
Settings::values.renderer_backend = Settings::RendererBackend::OpenGL;