commit fa6232fbce625cf9a160eaa4a67e0595d0fed53a
parent bcc758c5bf2065822ecb053a552505dd68e58477
Author: fundamental <[email protected]>
Date: Sun, 25 Jun 2017 18:20:56 -0400
Add compatiability port to fix test
Diffstat:
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/Misc/Master.cpp b/src/Misc/Master.cpp
@@ -485,6 +485,14 @@ static const Ports master_ports = {
rBOIL_END},
{"bank/", rDoc("Controls for instrument banks"), &bankPorts,
[](const char*,RtData&) {}},
+ {"learn:s", rProp(depricated) rDoc("MIDI Learn"), 0,
+ rBegin;
+ int free_slot = m->automate.free_slot();
+ if(free_slot >= 0) {
+ m->automate.createBinding(free_slot, rtosc_argument(msg, 0).s, true);
+ m->automate.active_slot = free_slot;
+ }
+ rEnd},
};
#undef rBegin