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
fixed crash when using high pitched sampler sounds > 3 octaves
Backwards compatibility issues:
added a failsafe that throws a compilation error when trying to define const variables in a (inline) function body. Before this was possible when the function was defined within a namespace, but this might lead to undefined behaviour and (possibly) subtle glitches.
In order to solve that, just replace the const var definition with either a var definition (in a function) or a local definition (in an inline function).