Browse Source

main: Save config on broken Vulkan detect

Prevents possible issues if someone were to open yuzu repeatedly over
and over again.
nce_cpp
lat9nq 4 years ago
parent
commit
b2dd2c6a45
  1. 2
      src/yuzu/main.cpp

2
src/yuzu/main.cpp

@ -299,6 +299,8 @@ GMainWindow::GMainWindow()
MigrateConfigFiles(); MigrateConfigFiles();
if (!CheckVulkan()) { if (!CheckVulkan()) {
config->Save();
QMessageBox::warning(this, tr("Broken Vulkan Installation Detected"), tr("")); QMessageBox::warning(this, tr("Broken Vulkan Installation Detected"), tr(""));
} }
if (UISettings::values.has_broken_vulkan) { if (UISettings::values.has_broken_vulkan) {

Loading…
Cancel
Save