added vanilla tweaks flags for better performance

This commit is contained in:
aomizu
2025-06-09 21:19:05 +09:00
parent b7d29cb597
commit 70e6a0feac

View File

@@ -79,8 +79,8 @@ func ApplyVanillaTweaks(myWindow fyne.Window) error {
} }
// Build the command to apply vanilla-tweaks using the correct format: // Build the command to apply vanilla-tweaks using the correct format:
// cd "path" && "wineloader2" ./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 ./WoW.exe`, shellCmd := fmt.Sprintf(`cd %s && %s ./vanilla-tweaks.exe --no-frilldistance -no-farclip ./WoW.exe`,
utils.QuotePathForShell(paths.TurtlewowPath), utils.QuotePathForShell(paths.TurtlewowPath),
utils.QuotePathForShell(wineloader2Path)) utils.QuotePathForShell(wineloader2Path))