mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
Fix VstParameterProperties (bug from ac03e4a93)
This fixes VST parameter prop.flags (toggle, integer-step). VestigeMaxLabelLen is used in various places in libardour, most notably with effGetParamName.
This commit is contained in:
parent
868eec264f
commit
b15d80ca77
1 changed files with 4 additions and 4 deletions
|
|
@ -238,7 +238,7 @@ struct _VstParameterProperties
|
||||||
float stepFloat; /* float step */
|
float stepFloat; /* float step */
|
||||||
float smallStepFloat; /* small float step */
|
float smallStepFloat; /* small float step */
|
||||||
float largeStepFloat; /* large float step */
|
float largeStepFloat; /* large float step */
|
||||||
char label[VestigeMaxLabelLen]; /* parameter label */
|
char label[64]; /* parameter label */
|
||||||
int32_t flags; /* @see VstParameterFlags */
|
int32_t flags; /* @see VstParameterFlags */
|
||||||
int32_t minInteger; /* integer minimum */
|
int32_t minInteger; /* integer minimum */
|
||||||
int32_t maxInteger; /* integer maximum */
|
int32_t maxInteger; /* integer maximum */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue