Skip to content

Commit 5c40c78

Browse files
gamefixes: add "Borderlands: The Pre-Sequel" fix based on "Borderlands 2" (#298)
1 parent 2e9d197 commit 5c40c78

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

gamefixes-steam/261640.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""Game fix for Borderlands: The Pre-Sequel"""
2+
3+
from protonfixes import util
4+
5+
6+
def main() -> None:
7+
"""Launcherfix and NVIDIA PhysX support."""
8+
# Fixes the startup process.
9+
util.replace_command('Launcher.exe', 'BorderlandsPreSequel.exe')
10+
util.append_argument('-NoSplash')
11+
12+
# Disables esync prevents crashes.
13+
util.disable_esync()
14+
15+
# Enables NVIDIA PhysX in Borderlands: The Pre-Sequel.
16+
util.protontricks('physx')

0 commit comments

Comments
 (0)