fixed vanilla tweaks typo

This commit is contained in:
aomizu
2025-06-10 23:28:17 +09:00
parent 70e6a0feac
commit c0a36e4e01
3 changed files with 4 additions and 4 deletions

View File

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