From 11e6372e0fe875b46bd227ae3fd1eeb7238384f7 Mon Sep 17 00:00:00 2001 From: Elliott Hauser Date: Mon, 11 Nov 2013 08:44:13 -0500 Subject: [PATCH 1/2] Made tiny window --- starpusher.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/starpusher.py b/starpusher.py index ca41615..a507c1a 100755 --- a/starpusher.py +++ b/starpusher.py @@ -7,8 +7,8 @@ from pygame.locals import * FPS = 30 # frames per second to update the screen -WINWIDTH = 800 # width of the program's window, in pixels -WINHEIGHT = 600 # height in pixels +WINWIDTH = 80 # width of the program's window, in pixels +WINHEIGHT = 60 # height in pixels HALF_WINWIDTH = int(WINWIDTH / 2) HALF_WINHEIGHT = int(WINHEIGHT / 2) @@ -595,4 +595,4 @@ def terminate(): if __name__ == '__main__': - main() \ No newline at end of file + main() From 9033c229b4fc0511bb13ff77c3b590c823fa0ee2 Mon Sep 17 00:00:00 2001 From: Elliott Hauser Date: Mon, 11 Nov 2013 08:50:36 -0500 Subject: [PATCH 2/2] Fixed window --- starpusher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/starpusher.py b/starpusher.py index a507c1a..0b5b811 100755 --- a/starpusher.py +++ b/starpusher.py @@ -7,8 +7,8 @@ from pygame.locals import * FPS = 30 # frames per second to update the screen -WINWIDTH = 80 # width of the program's window, in pixels -WINHEIGHT = 60 # height in pixels +WINWIDTH = 1000 # width of the program's window, in pixels +WINHEIGHT = 800 # height in pixels HALF_WINWIDTH = int(WINWIDTH / 2) HALF_WINHEIGHT = int(WINHEIGHT / 2)