Search code examples
windowsbatch-filewindowed

trying to make bat file open diablo2 in windowed mode


I have diablo2 and I got a mod for it which opens the game with a .bat file.

However it opens it in fullscreen mode which reduces fps and seems to cause mouse lag. I want the functionality of the bat file but to open the game in windowed mode.

@echo off
Path ..
game

So has anyone got anything I can do to that bat file to make the game open in windowed mode?


Solution

  • How about changing:

    game
    

    To:

    game -w
    

    Or:

    game -w -nofixaspect