Skip to content

Commit

Permalink
installer tweaks to text for Vanilla Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Mar 31, 2024
1 parent e1c5b05 commit 91efed7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions installer/GUI/InstallerWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ def initWindow(self):
self.width = 350
self.height = 500
self.lastprogress = ''
self.root.title("Deus Ex Randomizer " + GetVersion() + " Installer")
if IsVanillaFixer():
self.root.title("DXR Vanilla Fixer " + GetVersion())
else:
self.root.title("DXRando " + GetVersion() + " Installer")

self.dxvk_default = CheckVulkan()# this takes a second or so
self.ogl2_default = self.dxvk_default or not IsWindows()
Expand Down Expand Up @@ -114,7 +117,7 @@ def InitFlavorSettings(self, f: str, row, pad) -> int:
v = BooleanVar(master=self.frame, value=IsVanillaFixer())
settings['ZeroRando'] = v
c = Checkbutton(self.frame, text="Default to Zero Rando mode for "+f, variable=v)
Hovertip(c, "This retains the vanilla menu experience for your first launch.\nAnd also sets Zero Rando mode as your default game mode for a new game.")
Hovertip(c, "This retains the vanilla menu experience for your first launch.\nAnd also sets Zero Rando mode as your default game mode for a new game.\nYou can change this once you get into the game with the Rando menu.")
c.grid(column=1,row=row, sticky='SW', padx=pad*10, pady=pad)
self.FixColors(c)
row+=1
Expand Down Expand Up @@ -179,7 +182,7 @@ def LDDPCheckbox(self, row, padx, pady):
def GlobalFixes(self, row, pad):
# engine.dll speedup fix, this is global
self.speedupfixval = BooleanVar(master=self.frame, value=True)
self.speedupfix = Checkbutton(self.frame, text="Apply Engine.dll speedup fix to support higher frame rates.", variable=self.speedupfixval)
self.speedupfix = Checkbutton(self.frame, text="Apply Engine.dll speedup fix\nto support higher frame rates.", variable=self.speedupfixval)
self.speedupfix.grid(column=1,row=row, sticky='SW', padx=pad, pady=pad)
Hovertip(self.speedupfix, "Fixes issues with high frame rates.")
self.FixColors(self.speedupfix)
Expand Down

0 comments on commit 91efed7

Please sign in to comment.