|
From: Tapio V. <aa...@us...> - 2010-05-16 16:30:39
|
Module: performous
Branch: instrumentgraph
Commit: afed70b8e9cd330abc58c20927b16f12cbd7ea7c
Author: Tapio Vierros <tap...@gm...>
Date: Sun Apr 25 09:16:13 2010 +0300
Lefty mode switch changed to yellow + blue for easier documenting and less accidental activations.
---
game/guitargraph.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/guitargraph.cc b/game/guitargraph.cc
index 804f237..6005156 100644
--- a/game/guitargraph.cc
+++ b/game/guitargraph.cc
@@ -240,7 +240,7 @@ void GuitarGraph::engine() {
difficulty_changed = true;
}
// Lefty-mode switch
- if (ev.type == input::Event::PRESS && ev.pressed[1] && ev.pressed[(m_drums ? 2 : 0)])
+ if (ev.type == input::Event::PRESS && ev.pressed[2] && ev.pressed[3])
m_leftymode = !m_leftymode;
// Playing
} else if (m_drums) {
|