diff --git a/src/WolfShaperPlugin.cpp b/src/WolfShaperPlugin.cpp index 5736686..f5591e8 100644 --- a/src/WolfShaperPlugin.cpp +++ b/src/WolfShaperPlugin.cpp @@ -330,7 +330,7 @@ class WolfShaper : public Plugin if (absInput > 1.0f) { - return calculateValueOutsideGraph(input); + return calculateValueOutsideGraph(input < 0 ? -1.0f : 1.0f); } const bool bipolarMode = lineEditor.getBipolarMode();