summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Graef <aggraef@gmail.com>2018-09-24 09:29:34 +0200
committerPaul Davis <paul@linuxaudiosystems.com>2018-09-27 11:31:13 -0400
commit936f6814ac6456cd378495044ca78f12649b37b8 (patch)
treeac54062559398f5c4dcb86a25eeb47415266d9f6
parent4840543272725e83ca67cdc942960117fd58492f (diff)
MCP: Fix up the feedback for the bank left/right buttons.
-rw-r--r--libs/surfaces/mackie/mcp_buttons.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/surfaces/mackie/mcp_buttons.cc b/libs/surfaces/mackie/mcp_buttons.cc
index 697805674c..d5d657dfb3 100644
--- a/libs/surfaces/mackie/mcp_buttons.cc
+++ b/libs/surfaces/mackie/mcp_buttons.cc
@@ -120,7 +120,7 @@ MackieControlProtocol::left_press (Button &)
LedState
MackieControlProtocol::left_release (Button &)
{
- return none;
+ return off;
}
LedState
@@ -144,13 +144,13 @@ MackieControlProtocol::right_press (Button &)
(void) switch_banks (new_initial);
}
- return none;
+ return on;
}
LedState
MackieControlProtocol::right_release (Button &)
{
- return none;
+ return off;
}
LedState