13
0

OSC: check controllable exists before using

This commit is contained in:
Len Ovens 2017-05-31 07:15:50 -07:00
parent 46a2bfa0e6
commit b343108756

View File

@ -363,8 +363,10 @@ OSCSelectObserver::tick ()
} }
} }
if (feedback[13]) { if (feedback[13]) {
if (_strip->comp_enable_controllable()->get_value()) { if (_strip->comp_redux_controllable()) {
send_float ("/select/comp_redux", (float) _strip->comp_redux_controllable()->get_parameter ()); if (_strip->comp_redux_controllable()->get_parameter()) {
send_float ("/select/comp_redux", (float) _strip->comp_redux_controllable()->get_parameter ());
}
} }
for (uint32_t i = 0; i < send_timeout.size(); i++) { for (uint32_t i = 0; i < send_timeout.size(); i++) {
if (send_timeout[i]) { if (send_timeout[i]) {