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
I don't know so much about reverb algorithms, but I think there's a glitch in the initialization of this class. The comb1Length member variable (and the other combLengths) aren't initialized until setParameters is called. This would be fine, except the setParameters method checks if the input differs from the current fader values which actually are initialized in the constructor. Meaning, if someone called setParameters once with roomSizeIn=0.5 then the combLengths would continue to be uninitialized.
The text was updated successfully, but these errors were encountered:
I don't know so much about reverb algorithms, but I think there's a glitch in the initialization of this class. The comb1Length member variable (and the other combLengths) aren't initialized until setParameters is called. This would be fine, except the setParameters method checks if the input differs from the current fader values which actually are initialized in the constructor. Meaning, if someone called setParameters once with roomSizeIn=0.5 then the combLengths would continue to be uninitialized.
The text was updated successfully, but these errors were encountered: