summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-28 23:05:14 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-01-28 23:05:28 -0500
commitd0668e55114be299cbf5e348c73588756e931cfe (patch)
treed2af964c51dd6123f4d5ae9ea5c30927a1dc04e7
parente862be73000e8eb2925f33cf9685c0db01134655 (diff)
mackie: don't overload "Audio Instruments" and "Instruments" buttons.
With the MCU Pro, the button labelled "Instruments" uses the Dyn button ID. The one labelled "Audio Instruments" does not. This may break Nucleus support - needs to be checked
-rw-r--r--libs/surfaces/mackie/mcp_buttons.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/mackie/mcp_buttons.cc b/libs/surfaces/mackie/mcp_buttons.cc
index abce7429fa..6652516cf9 100644
--- a/libs/surfaces/mackie/mcp_buttons.cc
+++ b/libs/surfaces/mackie/mcp_buttons.cc
@@ -904,13 +904,13 @@ MackieControlProtocol::audiotracks_release (Mackie::Button&)
Mackie::LedState
MackieControlProtocol::audioinstruments_press (Mackie::Button& b)
{
- return dyn_press (b);
+ return none;
}
Mackie::LedState
MackieControlProtocol::audioinstruments_release (Mackie::Button& b)
{
- return dyn_release (b);
+ return none;
}
Mackie::LedState