|
From: Darkmagister <dar...@us...> - 2010-08-26 11:46:45
|
Module: performous
Branch: master
Commit: 0aaf29f0c240fb4786073e2f759d0596792213e8
Author: Darkmagister <f.p...@gm...>
Date: Thu Aug 26 13:38:40 2010 +0200
Removed kick as Start button
---
game/joystick.cc | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/game/joystick.cc b/game/joystick.cc
index a9f92a1..2296025 100644
--- a/game/joystick.cc
+++ b/game/joystick.cc
@@ -155,8 +155,7 @@ input::NavButton input::getNav(SDL_Event const &e) {
else return input::NONE;
} else if (devt.type_match(input::DRUMS)) {
// Drums can be used for navigation
- if (b == 0) return input::START;
- else if (b == 1) return input::LEFT;
+ if (b == 1) return input::LEFT;
else if (b == 2) return input::UP;
else if (b == 3) return input::DOWN;
else if (b == 4) return input::RIGHT;
|