You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
encountered error when launching a game on linux,
might have got an extra slash there and /dosdevices didn't exist for me,
what worked for me was just to add another makedirs:
existing code
if not file_exists(self.prefix_dir + "/dosdevices/c:", follow_symlinks=False):
os.symlink("../drive_c", self.prefix_dir + "/dosdevices/c:")
if not file_exists(self.prefix_dir + "/dosdevices/z:", follow_symlinks=False):
os.symlink("/", self.prefix_dir + "/dosdevices/z:")
new code
if not file_exists(self.prefix_dir + "dosdevices/c:", follow_symlinks=False):
makedirs(self.prefix_dir + "dosdevices")
os.symlink("../drive_c", self.prefix_dir + "dosdevices/c:")
if not file_exists(self.prefix_dir + "dosdevices/z:", follow_symlinks=False):
makedirs(self.prefix_dir + "dosdevices")
os.symlink("/", self.prefix_dir + "dosdevices/z:")
specs:
Linux devuan 6.1.0-26-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.112-1 (2024-09-30) x86_64 GNU/Linux
launch:
proton-experimental
Town of Salem
The text was updated successfully, but these errors were encountered:
Proton/proton
Line 796 in 1a73b04
encountered error when launching a game on linux,
might have got an extra slash there and /dosdevices didn't exist for me,
what worked for me was just to add another
makedirs
:existing code
new code
specs:
Linux devuan 6.1.0-26-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.112-1 (2024-09-30) x86_64 GNU/Linux
launch:
proton-experimental
Town of Salem
The text was updated successfully, but these errors were encountered: