mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-24 08:14:34 +01:00
proton: Start steam.exe from C:\\windows\\system32.
This commit is contained in:
parent
ec2a650072
commit
0f1f692c70
1 changed files with 2 additions and 2 deletions
4
proton
4
proton
|
|
@ -1232,7 +1232,7 @@ class Session:
|
|||
f.write(" \"" + arg + "\"")
|
||||
f.write(")\n")
|
||||
self.dump_dbg_env(f)
|
||||
f.write("\t\"" + g_proton.wine64_bin + "\" steam.exe \"${@:-${DEF_CMD[@]}}\"\n")
|
||||
f.write("\t\"" + g_proton.wine64_bin + "\" c:\\\\windows\\\\system32\\\\steam.exe \"${@:-${DEF_CMD[@]}}\"\n")
|
||||
os.chmod(tmpdir + "run", 0o755)
|
||||
|
||||
def run_proc(self, args, local_env=None):
|
||||
|
|
@ -1253,7 +1253,7 @@ class Session:
|
|||
else:
|
||||
remote_debug_proc = None
|
||||
|
||||
rc = self.run_proc([g_proton.wine64_bin, "steam"] + sys.argv[2:] + self.cmdlineappend)
|
||||
rc = self.run_proc([g_proton.wine64_bin, "c:\\windows\\system32\\steam.exe"] + sys.argv[2:] + self.cmdlineappend)
|
||||
|
||||
if remote_debug_proc:
|
||||
remote_debug_proc.kill()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue