From 087e235c369791d30ab69d26ca4acc157fabf979 Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Tue, 12 Dec 2023 02:21:39 -0800 Subject: [PATCH] Reverting 0c2d4bb1c36fa9a14903ab8c2b251cd212b5102e should stop the crashes on Wayland if my bisect is correct --- lutris/runners/wine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lutris/runners/wine.py b/lutris/runners/wine.py index 62606585c..510eaba42 100644 --- a/lutris/runners/wine.py +++ b/lutris/runners/wine.py @@ -65,7 +65,7 @@ def _get_dxvk_warning(config, option_key): def _get_simple_vulkan_support_error(config, option_key, feature): - if not LINUX_SYSTEM.is_vulkan_supported(): + if config.get(option_key) and not LINUX_SYSTEM.is_vulkan_supported(): return _("Error Vulkan is not installed or is not supported by your system, " "%s is not available.") % feature return None