From ad0621fa8235cdf10a651da57b63ec062ea4135b Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 17 Mar 2007 09:37:15 +0000 Subject: Fix the emulator. Patch by Noah Kantrowitz. --- (limited to 'sugar-emulator') diff --git a/sugar-emulator b/sugar-emulator index 944b607..76fccdb 100755 --- a/sugar-emulator +++ b/sugar-emulator @@ -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') -- cgit v0.9.1