From 134de4472d3f2fa913944770595de9221dd27fdf Mon Sep 17 00:00:00 2001 From: Thomas B Thompson Date: Tue, 4 Jan 2011 00:04:05 -0500 Subject: worked on profiling, made a bunch of changes, huge speedup! --- inputs/PygameInput.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'inputs') diff --git a/inputs/PygameInput.py b/inputs/PygameInput.py index 6779a20..a39c089 100644 --- a/inputs/PygameInput.py +++ b/inputs/PygameInput.py @@ -13,6 +13,8 @@ class PygameInput(Input): return for event in pygame.event.get(): if event.type is KEYDOWN: + if event.key == 301: + exit() self.respond({Strings.LOCATION: (5,5),'Key': event.key}) if event.type is MOUSEBUTTONDOWN: self.respond({Strings.LOCATION: pygame.mouse.get_pos()}) -- cgit v1.2.3