Skip to content

Commit

Permalink
Add full screen settings
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktelindert committed Aug 3, 2021
1 parent a84d161 commit c5221a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ def __init__(self, path):
if not os.path.isfile(cfg_file):
config = configparser.ConfigParser()
with open(cfg_file, 'a') as f:
f.write("[sdl]\n")
f.write("fullscreen = true\n")
f.write("fullresolution = desktop\n")
f.write("output = opengl\n\n")
f.write("[autoexec]\n")
f.write('MOUNT C ' + game_path + "data/\n")
f.write('C:\n')
Expand Down

0 comments on commit c5221a8

Please sign in to comment.