|
From: Lasse Kärkkäi. <tr...@us...> - 2010-01-08 20:22:13
|
Module: performous
Branch: master
Commit: 224bc9b1fbd2f1a9bc7eb2a05b74fa2fd1065b7f
Author: Lasse Karkkainen <tro...@tr...>
Date: Fri Jan 8 22:22:00 2010 +0200
Fix bass drum broken by previous commit.
---
game/joystick.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/joystick.cc b/game/joystick.cc
index f894f48..1a6cdfd 100644
--- a/game/joystick.cc
+++ b/game/joystick.cc
@@ -491,7 +491,7 @@ bool input::SDL::pushEvent(SDL_Event _e) {
button++;
case SDLK_u:
button++;
- case SDLK_b:
+ case SDLK_SPACE:
if(!drumkit) return false;
if(devices[joy_id].pressed(button)) return true; // repeating
is_drumkit_event = true;
|