fixed freezing of the client

This commit is contained in:
aomizu
2025-05-30 21:19:09 +09:00
parent 6c221dc16f
commit 1664fdf340
2 changed files with 2 additions and 2 deletions

View File

@@ -3,4 +3,4 @@
Name = "TurtleSilicon"
ID = "com.tairasu.turtlesilicon"
Version = "1.1.0"
Build = 19
Build = 20

View File

@@ -70,7 +70,7 @@ func LaunchGame(myWindow fyne.Window) {
}
// Prepare environment variables
envVars := fmt.Sprintf(`WINEDLLOVERRIDES="d3d9=n,b" MTL_HUD_ENABLED=%s`, mtlHudValue)
envVars := fmt.Sprintf(`WINEDLLOVERRIDES="d3d9=n,b" MTL_HUD_ENABLED=%s MVK_CONFIG_SYNCHRONOUS_QUEUE_SUBMITS=1`, mtlHudValue)
if CustomEnvVars != "" {
envVars = CustomEnvVars + " " + envVars
}