[pypy-svn] r62729 - pypy/trunk/pypy/lang/gameboy

santagada at codespeak.net santagada at codespeak.net
Sun Mar 8 01:30:03 CET 2009


Author: santagada
Date: Sun Mar  8 01:30:02 2009
New Revision: 62729

Modified:
   pypy/trunk/pypy/lang/gameboy/gameboy_implementation.py
Log:
second button is now "s" on the keyboard, remember that when playing Metroid :)

Modified: pypy/trunk/pypy/lang/gameboy/gameboy_implementation.py
==============================================================================
--- pypy/trunk/pypy/lang/gameboy/gameboy_implementation.py	(original)
+++ pypy/trunk/pypy/lang/gameboy/gameboy_implementation.py	Sun Mar  8 01:30:02 2009
@@ -245,7 +245,7 @@
             return JoypadDriver.button_select
         elif key == RSDL.K_a:
             return JoypadDriver.button_a
-        elif key == RSDL.K_b:
+        elif key == RSDL.K_s:
             return JoypadDriver.button_b
         return None
         



More information about the Pypy-commit mailing list