summaryrefslogtreecommitdiffstats
path: root/src/yuzu/configuration/configure_debug.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-09-24 02:28:13 +0200
committerGitHub <noreply@github.com>2022-09-24 02:28:13 +0200
commit12baf88dc8e1e1ea467bc60603ffddb975f52c95 (patch)
tree191d9e192fb5affcd5504d7ca42a846385909114 /src/yuzu/configuration/configure_debug.cpp
parentMerge pull request #8943 from lioncash/netiface (diff)
parentyuzu qt: Add option to disable startup Vulkan check (diff)
downloadyuzu-12baf88dc8e1e1ea467bc60603ffddb975f52c95.tar
yuzu-12baf88dc8e1e1ea467bc60603ffddb975f52c95.tar.gz
yuzu-12baf88dc8e1e1ea467bc60603ffddb975f52c95.tar.bz2
yuzu-12baf88dc8e1e1ea467bc60603ffddb975f52c95.tar.lz
yuzu-12baf88dc8e1e1ea467bc60603ffddb975f52c95.tar.xz
yuzu-12baf88dc8e1e1ea467bc60603ffddb975f52c95.tar.zst
yuzu-12baf88dc8e1e1ea467bc60603ffddb975f52c95.zip
Diffstat (limited to 'src/yuzu/configuration/configure_debug.cpp')
-rw-r--r--src/yuzu/configuration/configure_debug.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_debug.cpp b/src/yuzu/configuration/configure_debug.cpp
index 622808e94..dacc75a20 100644
--- a/src/yuzu/configuration/configure_debug.cpp
+++ b/src/yuzu/configuration/configure_debug.cpp
@@ -77,6 +77,7 @@ void ConfigureDebug::SetConfiguration() {
ui->disable_loop_safety_checks->setChecked(
Settings::values.disable_shader_loop_safety_checks.GetValue());
ui->extended_logging->setChecked(Settings::values.extended_logging.GetValue());
+ ui->perform_vulkan_check->setChecked(Settings::values.perform_vulkan_check.GetValue());
#ifdef YUZU_USE_QT_WEB_ENGINE
ui->disable_web_applet->setChecked(UISettings::values.disable_web_applet.GetValue());
@@ -117,6 +118,7 @@ void ConfigureDebug::ApplyConfiguration() {
ui->disable_loop_safety_checks->isChecked();
Settings::values.disable_macro_jit = ui->disable_macro_jit->isChecked();
Settings::values.extended_logging = ui->extended_logging->isChecked();
+ Settings::values.perform_vulkan_check = ui->perform_vulkan_check->isChecked();
UISettings::values.disable_web_applet = ui->disable_web_applet->isChecked();
Debugger::ToggleConsole();
Common::Log::Filter filter;