Robin Schmidt
Robin Schmidt
ok, done: ```cpp bool isValidXmlAttributeName(const juce::String& s) { int N = s.length(); if(N == 0) return false; if(!isLetter(s[0])) return false; for(int i = 1; i < N; i++) if(!isLetterOrDigit(s[i])) return...
> you need to allow for underscore ok, it should accept underscores now. how can i reproduce the NaNs?
it just plays a sine'ish tone here. edit: your `inputSignal` variable is already nan
not using a dll - i'm running the standalone version. freshly built with freshly updated repo
> Did you change something in your library that would cause this that I need to know about? ToolChain does not fail. well, i mean, i'm changing things here or...
maybe something in the settings in the jucer file? dunno, but that would be the next obvious place to look
i've tried searching for a reference for the error messages to figure out what the "ERROR: Format errors." wants to say - but no avail. apple's documentation seems to suck
> Looks like a safe max for filter cutoff is samplerate * 0.5 oh - yes - that could well be. we were talking about this issue already recently here:...
> That was it. "aumu" (kAudioUnitType_MusicDevice) succeeded. Wow, wasted an entire day figuring this out, precious time lost. is this a setting in the jucer file or where do you...
> you need to allow for underscore fuck! why didn't anyone tell me that: > the rules for XML element names are also the rules for XML attribute names https://docstore.mik.ua/orelly/xml/xmlnut/ch02_04.htm...