free-audio / clap-wrapper

Wrappers for using CLAP in other plugin environments
MIT License
107 stars 17 forks source link

Fix a VST3 off-by-one error in a stepped param #259

Closed baconpaul closed 2 months ago

baconpaul commented 2 months ago

The step count is not +1, but rather just the range, as demonstrated by the clap-first distortion plugin compared in bitwig.

Closes #258

baconpaul commented 2 months ago

that error is just the win clang screwage

defiantnerd commented 2 months ago

I just read the VST3 documentation again, indeed they don't count the number of steps, only the steps inbetween. This fix is not enough, I have to change more things.