13
0

Remove debug message, improve comment

This commit is contained in:
Robin Gareus 2024-07-23 16:56:25 +02:00
parent 5f0b15d446
commit 9b6039c170
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -191,10 +191,9 @@ VSTPlugin::set_parameter (uint32_t which, float newval, sampleoffset_t when)
if (0 != rv) {
_eff_bypassed = (value == 1);
} else {
cerr << "effSetBypass failed rv=" << rv << endl; // XXX DEBUG
#ifdef ALLOW_VST_BYPASS_TO_FAIL // yet unused, see also vst_plugin.cc
// emit signal.. hard un/bypass from here?!
#endif
/* TODO: hard-bypass effect, emit signal, and ensure that the
* plugin is reactivated on the next call to this function..
*/
}
return;
}