Closed docktordreh closed 1 year ago
Hi, first off, thank you for creating this. I'm hoping this will be merged into the ME2 sometime.
In the release section, there is an error I think. You mention that
echo "%command%" | sed 's/start_protected_game/eldenring/' | WINEDLLOVERRIDES="dinput8.dll=n,b" sh
should be used, but the sed command has to be the other way around:
sed
echo "%command%" | sed 's/eldenring/start_protected_game/' | WINEDLLOVERRIDES="dinput8.dll=n,b" sh
so that the string eldenring.exe really will be replaced by start_protected_game.exe
eldenring.exe
start_protected_game.exe
Sorry - seems I had it wrong in my head!
Hi, first off, thank you for creating this. I'm hoping this will be merged into the ME2 sometime.
In the release section, there is an error I think. You mention that
should be used, but the
sed
command has to be the other way around:so that the string
eldenring.exe
really will be replaced bystart_protected_game.exe