From 2dafb27055f41554674e64449dfd597d2d214db7 Mon Sep 17 00:00:00 2001 From: lat9nq Date: Sun, 29 May 2022 23:38:51 -0400 Subject: [PATCH] main: Save config on broken Vulkan detect Prevents possible issues if someone were to open yuzu repeatedly over and over again. --- src/yuzu/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index ff1afa56e..1fd9af942 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -299,6 +299,8 @@ GMainWindow::GMainWindow() MigrateConfigFiles(); if (!CheckVulkan()) { + config->Save(); + QMessageBox::warning(this, tr("Broken Vulkan Installation Detected"), tr("")); } if (UISettings::values.has_broken_vulkan) {