diff options
author | Graham Northup <grissess@itl> | 2015-10-03 02:58:37 -0400 |
---|---|---|
committer | Graham Northup <grissess@itl> | 2015-10-03 03:00:52 -0400 |
commit | 1d18a4ff6e656b69454f82a42af4203fdfc3a2f0 (patch) | |
tree | d265f571ebe52467c6c3b1da5ec0f9905aa23072 | |
parent | 9f9ec226c5dbcbe11a9f4b7d530f2148968832e3 (diff) |
Some pygame stuff
-rw-r--r-- | piano.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -211,8 +211,8 @@ if options.keyboard: pygame.init() size = width , height = 640,360 screen = pygame.display.set_mode(size) - picture = pygame.image.load("aaaa.png") - surface = pygame.display.get_surface() + #picture = pygame.image.load("aaaa.png") + #surface = pygame.display.get_surface() pitch = 60 velocity = 127 client_set = set(clients) @@ -220,8 +220,8 @@ if options.keyboard: sustain_status = False sharp = 0 while True: - surface.blit(picture,(0,0)) - pygame.display.update() + #surface.blit(picture,(0,0)) + #pygame.display.update() for event in pygame.event.get(): if event.type == pygame.QUIT: pygame.quit() |