You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to use this plugin with Logic Pro (particularly OPNplug v1.0.2) however it doesn't seem to want to validate. There might be a workaround to bypass the validation but I don't know of any. I tried the latest dev build to see if that fixes anything, however that one doesn't even show up in the plugins manager.
The text was updated successfully, but these errors were encountered:
/* If you're building this plugin as an AudioUnit, and you intend to use the plugin in
Logic Pro or GarageBand, it's a good idea to set version hints on all of your parameters
so that you can add parameters safely in future versions of the plugin.
See the documentation for AudioProcessorParameter(int) for more information.
*/
#if JucePlugin_Build_AU
jassert (wrapperType == wrapperType_Undefined || param->getVersionHint() != 0);
#endif
With parameters from ADLplug, getVersionHint() returns 0. This seems to explain why you're hitting the problem.
Hi, I'm trying to use this plugin with Logic Pro (particularly OPNplug v1.0.2) however it doesn't seem to want to validate. There might be a workaround to bypass the validation but I don't know of any. I tried the latest dev build to see if that fixes anything, however that one doesn't even show up in the plugins manager.
The text was updated successfully, but these errors were encountered: