13
0

replace unnecessary assert(0) with return;

This commit is contained in:
Paul Davis 2022-06-21 18:39:29 -06:00
parent 4ee854e7df
commit b30ac5e221

View File

@ -2566,6 +2566,7 @@ VST3PI::automation_state_changed (uint32_t port, AutoState s, boost::weak_ptr<Au
break;
default:
assert (0);
return;
}
extra_ctrl->setParamAutomationMode (id, am);
}