Skip to content

Commit

Permalink
installer DXVK Linux, off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Jul 7, 2024
1 parent 9b1dc50 commit 859abd3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions installer/GUI/InstallerWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,15 +228,15 @@ def GlobalFixes(self, pad):
self.row+=1

# DXVK is also global
self.globalsettings['dxvk'] = BooleanVar(master=self.frame, value=self.dxvk_default)
self.dxvk = Checkbutton(self.frame, text="Apply DXVK fix for modern computers", variable=self.globalsettings['dxvk'])
self.setgrid(self.dxvk, True, column=1,row=self.row, sticky='SW', padx=pad, pady=pad)
if IsWindows():
self.globalsettings['dxvk'] = BooleanVar(master=self.frame, value=self.dxvk_default)
self.dxvk = Checkbutton(self.frame, text="Apply DXVK fix for modern computers", variable=self.globalsettings['dxvk'])
self.setgrid(self.dxvk, True, column=1,row=self.row, sticky='SW', padx=pad, pady=pad)
Hovertip(self.dxvk, "DXVK can fix performance issues on modern systems by using Vulkan.")
self.FixColors(self.dxvk)
self.row+=1
else:
self.globalsettings['dxvk'] = DummyCheckbox()
Hovertip(self.dxvk, "Shouldn't be necessary on Linux.")
self.FixColors(self.dxvk)
self.row+=1

self.globalsettings['deus_nsf_d3d10_lighting'] = BooleanVar(master=self.frame, value=False)
self.deus_nsf_d3d10_lighting = Checkbutton(self.frame, text="Deus_nsf D3D10 vivid lighting", variable=self.globalsettings['deus_nsf_d3d10_lighting'])
Expand Down

0 comments on commit 859abd3

Please sign in to comment.