Cloudef / ModEngine2

Runtime injection library for modding Souls games. WIP
MIT License
37 stars 1 forks source link

wine command prompt #17

Closed Pednick closed 1 year ago

Pednick commented 1 year ago

How would I type this command: echo "%command%" | sed 's/start_protected_game/eldenring/' | WINEDLLOVERRIDES="dinput8.dll=n,b" sh

Using wine on the command prompt.

Cloudef commented 1 year ago

WINEDLLOVERRIDES="dinput8.dll=n,b" wine eldenring.exe

Pednick commented 1 year ago

WINEDLLOVERRIDES="dinput8.dll=n,b" wine eldenring.exe

Thank you.