proton: Don't crash on invalid VR config file
This commit is contained in:
parent
c74de6a23b
commit
0e15c0048f
1 changed files with 2 additions and 2 deletions
4
proton
4
proton
|
@ -340,8 +340,8 @@ with prefix_lock:
|
||||||
|
|
||||||
if vr_log is None:
|
if vr_log is None:
|
||||||
vr_log = j["log"][0]
|
vr_log = j["log"][0]
|
||||||
except (ValueError, OSError):
|
except (TypeError, ValueError, OSError):
|
||||||
pass
|
log("Missing or invalid openvrpaths.vrpath file! " + str(sys.exc_info()[1]))
|
||||||
|
|
||||||
makedirs(prefix + "/drive_c/users/steamuser/Local Settings/Application Data/openvr")
|
makedirs(prefix + "/drive_c/users/steamuser/Local Settings/Application Data/openvr")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue