diff --git a/dxvk.go b/dxvk.go index 1183d6d5..1d38a8a9 100644 --- a/dxvk.go +++ b/dxvk.go @@ -19,7 +19,7 @@ import ( // and uninstallation of DXVK. var DxvkInstallMarker = filepath.Join(Dirs.Prefix, ".vinegar-dxvk") -const DXVKVER = "2.1" +const DXVKVER = "2.2" func DxvkStrap() { _, err := os.Stat(DxvkInstallMarker) diff --git a/roblox.go b/roblox.go index 839b28eb..7746e317 100644 --- a/roblox.go +++ b/roblox.go @@ -186,9 +186,9 @@ func RobloxPlayer(args ...string) { rblx.Setup() DxvkStrap() - if config.Dxvk { + if Config.Dxvk { // Tells wine to use the DXVK DLLs - config.Env["WINEDLLOVERRIDES"] += "d3d10core=n;d3d11=n;d3d9=n;dxgi=n" + Config.Env["WINEDLLOVERRIDES"] += "d3d10core=n;d3d11=n;d3d9=n;dxgi=n" } rblx.ApplyFFlags("Client")