<div dir="ltr">Hi guys, I was trying to use Swh lv2 plugin shaper and found something strange, was it suppose to explode the sound when the waveshape parameter hits -1 or below? Also when I looked into the code I found this piece:<br>

<br>float shape = 0.0f;<br><br><div>if (shapep < 1.0f && shapep > -1.0f) {</div><div><span class="" style="white-space:pre">        </span>shape = 1.0f;</div><div>} else if (shape < 0) {</div><div><span class="" style="white-space:pre">     </span>shape = -1.0f / shape;</div>

<div>} else {</div><div><span class="" style="white-space:pre">     </span>shape = shapep;</div><div style>}<br><br>I think the first <b>else if</b> should be about shapep, but I don't know exactly how this plugin should work, I changed that part to else if (shapep < 0) but the explosion in sound remains... Do you guys have any Idea?</div>

</div>