…that i’ve come across.
JuceVSTWrapper.cpp in tha audio-plugin code is missing this function:
long getProgram ()
{
return filter->getCurrentProgram ();
}
I keep forgetting to mention this - i guess because its such a quick fix to make.
and another one, which i’m not so sure about…
When i create a slider with a skew factor, in release mode only, the lower range limit doens’t seem to work. (in my case i have a lower limit of 100.0 but can move the slider to 0.0). It seems to be a compiler optimisation problem, and i can fix it by setting floating point consistency to improved consitency in the optimisation settings. I’ve currently set this for the whole JUCE project, which isn’t ideal, but I haven’t had time to look into what the specific problem is.
btw, this is with VC++ .net v7, and i had to use the VC6 project files because it won’t load v8 files.