From 4e22ca871491fdc1450d08bbb99c04eec4c3e571 Mon Sep 17 00:00:00 2001 From: Evan Burkey Date: Thu, 24 Jul 2025 10:38:26 -0700 Subject: [PATCH] remove MVK_CONFIG_SYNCHRONOUS_QUEUE_SUBMITS --- FyneApp.toml | 2 +- pkg/launcher/launcher.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FyneApp.toml b/FyneApp.toml index 843b702..212fd2b 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -3,4 +3,4 @@ Name = "EpochSilicon" ID = "com.burkey.epochsilicon" Version = "1.0.1" - Build = 19 + Build = 22 diff --git a/pkg/launcher/launcher.go b/pkg/launcher/launcher.go index dd7a071..8700c4a 100644 --- a/pkg/launcher/launcher.go +++ b/pkg/launcher/launcher.go @@ -188,7 +188,7 @@ func continueLaunch(myWindow fyne.Window, wowExePath string) { } // Prepare environment variables - envVars := fmt.Sprintf(`WINEDLLOVERRIDES="d3d9=n,b" MTL_HUD_ENABLED=%s MVK_CONFIG_SYNCHRONOUS_QUEUE_SUBMITS=1 DXVK_ASYNC=1`, mtlHudValue) + envVars := fmt.Sprintf(`WINEDLLOVERRIDES="d3d9=n,b" MTL_HUD_ENABLED=%s DXVK_ASYNC=1`, mtlHudValue) if CustomEnvVars != "" { envVars = CustomEnvVars + " " + envVars }