I have it set up so when I build my project The AudioPluginHost opens. Recently, my project builds successfully but the Host crashes. The error I get is com.apple.audio.IOThread.client (11) EXC_BREAKPOINT (code=1, subcode=0x124b55d64). Here’s what my screen looks like.
Any ideas on a fix?
Looks like you have a DelayLine object and you are setting the delay time to a value that is out of range. This is what is causing your plugin to hit that assertion.
So you can fix it by increasing the size of the DelayLine when you initialize it, or checking the limit of the DelayLine before setting the new delay value. Depends on your needs.