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
The bitcrush module is outputing a huge DC offset in my testing, it seems that there's a bug in the code.
In line 27 of bitcrush.cpp: out *= (65536.0f / bits) - 32768;
I believe it should be out *= (65536.0f / bits); out -= 32768;
or something equivalent instead.