diff options
author | SpitfireX <timm.weber@me.com> | 2015-08-10 22:30:18 +0200 |
---|---|---|
committer | SpitfireX <timm.weber@me.com> | 2015-08-10 22:30:18 +0200 |
commit | 0b38518540aef32e5420aed456acfa7402200215 (patch) | |
tree | 0a825771151786bd2d0582ecdb3565081b33f5bc /gui.py | |
parent | 72de6605c7553a49d2688331dd9b2298c354ba48 (diff) |
Made default window size better line up with the actual vision range
Diffstat (limited to 'gui.py')
-rw-r--r-- | gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ logging = False input = False clock = pygame.time.Clock() -screensize=(800,600) +screensize=(1280, 720) screen=pygame.display.set_mode(screensize,HWSURFACE|DOUBLEBUF|RESIZABLE) def debug_line(p1,p2,col): |