|
From: knittl <kn...@us...> - 2009-08-03 08:39:44
|
Module: performous
Branch: master
Commit: cbeff9c5671d3570ff3cd562c89fda03a03efc16
Author: Vincent Le Ligeour <yo...@us...>
Date: Fri Jul 31 19:58:13 2009 +0200
Fixed GHWT drumkit button mapping
---
game/guitargraph.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/guitargraph.cc b/game/guitargraph.cc
index 3788cdc..098030d 100644
--- a/game/guitargraph.cc
+++ b/game/guitargraph.cc
@@ -47,7 +47,7 @@ void GuitarGraph::inputProcess() {
if (b >= 6) continue;
static const int inputmap[][6] = {
{ 2, 0, 1, 3, 4, 0 }, // Guitar Hero guitar
- { 0, 0, 0, 0, 0, 0 }, // Guitar Hero drums (FIXME)
+ { 3, 4, 1, 2, 0, 4 }, // Guitar Hero drums
{ 3, 0, 1, 2, 4, 0 }, // Rock Band guitar
{ 3, 4, 1, 2, 0, 0 } // Rock Band drums
};
|