commit 5404af8fcd0a224c103cf9437391cabc3cbc8928
parent 2c01ed8414cea4d33b8762d9907a38755c6638f1
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Sun, 30 Nov 2014 17:55:31 +0100
display_text -> display
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/clap/ext/params.h b/include/clap/ext/params.h
@@ -27,12 +27,12 @@ struct clap_param
uint32_t parent; // parent's index, -1 for no parent
/* param info */
- enum clap_param_type type;
char id[CLAP_ID_SIZE]; // a string which identify the param
char name[CLAP_NAME_SIZE]; // the display name
char desc[CLAP_DESC_SIZE];
+ char display[CLAP_DISPLAY_SIZE]; // the text used to display the value
+ enum clap_param_type type;
bool is_per_note;
- char display_text[CLAP_DISPLAY_SIZE]; // the text used to display the value
bool is_used; // is this parameter used by the patch?
union clap_param_value value;
union clap_param_value min;