Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] WINEPREFIX ignored when using GPTK #3277

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Dirty fix of bug #3026
  • Loading branch information
SB2DD authored Nov 29, 2023
commit cc64187ac332ff4bf1b7812e00de435eb8c23142
2 changes: 2 additions & 0 deletions src/backend/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,10 @@
ret.STEAM_COMPAT_INSTALL_PATH = installPath
}
break
case 'crossover':

Check failure on line 494 in src/backend/launcher.ts

View workflow job for this annotation

GitHub Actions / codecheck

Fallthrough case in switch.
ret.CX_BOTTLE = wineCrossoverBottle
case 'toolkit':

Check failure on line 496 in src/backend/launcher.ts

View workflow job for this annotation

GitHub Actions / lint

Expected a 'break' statement before 'case'
ret.WINEPREFIX = winePrefix
}
if (gameSettings.showFps) {
isMac ? (ret.MTL_HUD_ENABLED = '1') : (ret.DXVK_HUD = 'fps')
Expand Down
Loading