From 70e6a0feac022a9292cb2e64120a200b0491b10c Mon Sep 17 00:00:00 2001 From: aomizu Date: Mon, 9 Jun 2025 21:19:05 +0900 Subject: [PATCH] added vanilla tweaks flags for better performance --- pkg/launcher/vanilla_tweaks.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/launcher/vanilla_tweaks.go b/pkg/launcher/vanilla_tweaks.go index 5c4054e..a5c1539 100644 --- a/pkg/launcher/vanilla_tweaks.go +++ b/pkg/launcher/vanilla_tweaks.go @@ -79,8 +79,8 @@ func ApplyVanillaTweaks(myWindow fyne.Window) error { } // Build the command to apply vanilla-tweaks using the correct format: - // cd "path" && "wineloader2" ./vanilla-tweaks.exe ./WoW.exe - shellCmd := fmt.Sprintf(`cd %s && %s ./vanilla-tweaks.exe ./WoW.exe`, + // cd "path" && "wineloader2" ./vanilla-tweaks.exe --no-frilldistance -no-farclip ./WoW.exe + shellCmd := fmt.Sprintf(`cd %s && %s ./vanilla-tweaks.exe --no-frilldistance -no-farclip ./WoW.exe`, utils.QuotePathForShell(paths.TurtlewowPath), utils.QuotePathForShell(wineloader2Path))