|
From: Tapio V. <aa...@us...> - 2010-01-09 16:08:43
|
Module: performous
Branch: master
Commit: 02e431599bca9531e835dfc4c1bcee68e78f823a
Author: Tapio Vierros <tap...@gm...>
Date: Sat Jan 9 18:07:41 2010 +0200
Use Start as fallback Godmode switch for now.
---
game/guitargraph.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/guitargraph.cc b/game/guitargraph.cc
index 9805489..2098934 100644
--- a/game/guitargraph.cc
+++ b/game/guitargraph.cc
@@ -162,7 +162,7 @@ void GuitarGraph::engine() {
if (m_jointime == not_joined) m_jointime = (time < 0.0 ? -join_delay : time); // Handle joining
// Handle Start/Select keypresses
if (ev.type == input::Event::PRESS && ev.button > input::STARPOWER_BUTTON) {
- if (ev.button == 8) ev.button = input::STARPOWER_BUTTON; // Select works for GodMode
+ if (ev.button == 9) ev.button = input::STARPOWER_BUTTON; // Start works for GodMode
else continue;
}
// Guitar specific actions
|