Fix the emulator. Patch by Noah Kantrowitz.

This commit is contained in:
Marco Pesenti Gritti
2007-03-17 10:37:15 +01:00
parent bcec19eb1d
commit ad0621fa82
+2 -1
View File
@@ -59,7 +59,8 @@ def _start_xephyr(width, height, dpi):
cmd.append('-ac')
if width > 0 and height > 0:
cmd.append('-screen %dx%d' % (width, height))
cmd.append('-screen')
cmd.append('%dx%d' % (width, height))
else:
cmd.append('-fullscreen')