|
From: Tapio V. <aa...@us...> - 2010-09-27 14:53:50
|
Module: performous
Branch: master
Commit: 2021565e08cc63cc3e0c7ce50e2d672dd3e51d09
Author: Tapio Vierros <tap...@gm...>
Date: Mon Sep 27 17:36:12 2010 +0300
Revert "Disabled lefty-mode with keyboard guitar."
This reverts commit d00e2e3e0c5ab071f00e9b33220490d0876bda6a.
---
game/guitargraph.cc | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/game/guitargraph.cc b/game/guitargraph.cc
index 99d9390..cf76e00 100644
--- a/game/guitargraph.cc
+++ b/game/guitargraph.cc
@@ -170,9 +170,7 @@ void GuitarGraph::setupJoinMenu() {
m_menu.add(MenuOption("", _("Select difficulty"), &m_selectedDifficulty)); // MenuOption that cycles the options
m_menu.back().setDynamicName(m_difficultyOpt); // Set the title to be dynamic
}
- // Lefty-mode is not available with keyboard guitar
- if (m_drums || !m_input.isKeyboard())
- m_menu.add(MenuOption(_("Lefty-mode"), "", &m_leftymode));
+ m_menu.add(MenuOption(_("Lefty-mode"), "", &m_leftymode));
m_menu.back().setDynamicComment(m_leftyOpt);
m_menu.add(MenuOption(_("Quit"), _("Exit to song browser"), "Songs"));
}
|