clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 206a66cd1d68b8f62c95202a499af7992ca5a07a
parent 43c15386f033c8bbdc3c4fb2e3b3a525482302c1
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Sun, 30 Jan 2022 20:06:07 +0100

CLAP_CV_VALUE = 0, as it is a better default

Fixes #59

Diffstat:
Minclude/clap/ext/draft/cv.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/clap/ext/draft/cv.h b/include/clap/ext/draft/cv.h @@ -16,9 +16,9 @@ extern "C" { enum { // TODO: standardize values? - CLAP_CV_GATE = 0, - CLAP_CV_PITCH = 1, - CLAP_CV_VALUE = 2, + CLAP_CV_VALUE = 0, + CLAP_CV_GATE = 1, + CLAP_CV_PITCH = 2, }; typedef struct clap_plugin_cv {