1
0
mirror of https://github.com/lutris/lutris synced 2024-07-08 11:35:50 +00:00

Fix (currently unused) resolution options for zdoom

This commit is contained in:
Mathieu Comandon 2016-08-04 11:48:34 -07:00
parent de7b5879f1
commit 46d7a82c14

View File

@ -99,8 +99,10 @@ class zdoom(Runner):
if resolution == 'desktop':
resolution = display.get_current_resolution()
width, height = resolution.split('x')
command.append("-width %s" % width)
command.append("-height %s" % height)
command.append("-width")
command.append(width)
command.append("-height")
command.append(height)
# Append any boolean options.
bool_options = ['nomusic', 'nosfx', 'nosound', '2', '4', 'nostartup']