Base size on height

This commit is contained in:
Marco Pesenti Gritti 2007-01-31 12:04:11 -05:00
parent 2646f333b3
commit 36e9099fca

View File

@ -84,8 +84,8 @@ if gtk.gdk.screen_width() / 4 * 3 == gtk.gdk.screen_height():
gtk.gdk.screen_height() <= 900)
else:
fullscreen = False
width = gtk.gdk.screen_width() - 50
height = width / 4 * 3
height = gtk.gdk.screen_height() - 50
width = height * 4 / 3
emulator = Emulator(width, height, fullscreen)
emulator.start()