From 973ae4c61ac4ad9294a66f5d2a32c94c5d35d579 Mon Sep 17 00:00:00 2001 From: Mikhail Tergoev Date: Thu, 26 Jun 2025 13:08:33 +0300 Subject: [PATCH] fixed debug variables --- winehelper | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/winehelper b/winehelper index 7c9e91f..95deda3 100755 --- a/winehelper +++ b/winehelper @@ -46,11 +46,11 @@ check_variables () { [[ -z ${!1} ]] && export $1="$2" ;} if [[ "$1" == "--debug" ]] ; then check_variables WINEDEBUG "+loaddll,+seh" export DXVK_LOG_LEVEL="error" - export VKD3D_DEBUG "error" - export WINE_MONO_TRACE "E:System.NotImplementedException" - export VK_LOADER_DEBUG "error" - export VKBASALT_LOG_LEVEL "error" - export DXVK_NVAPI_LOG_LEVEL "error" + export VKD3D_DEBUG="error" + export WINE_MONO_TRACE="E:System.NotImplementedException" + export VK_LOADER_DEBUG="error" + export VKBASALT_LOG_LEVEL="error" + export DXVK_NVAPI_LOG_LEVEL="error" shift else check_variables WINEDEBUG "-all"