mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-11 13:21:03 +00:00
Use int for number of inputs and outputs, some plugins have a lot of ports
This commit is contained in:
parent
8aa2d14476
commit
29a4abb9a5
1 changed files with 2 additions and 2 deletions
|
@ -91,8 +91,8 @@ typedef struct _fluid_ladspa_node_t
|
||||||
fluid_ladspa_node_type_t type;
|
fluid_ladspa_node_type_t type;
|
||||||
LADSPA_Data *buf;
|
LADSPA_Data *buf;
|
||||||
|
|
||||||
char num_inputs;
|
int num_inputs;
|
||||||
char num_outputs;
|
int num_outputs;
|
||||||
|
|
||||||
} fluid_ladspa_node_t;
|
} fluid_ladspa_node_t;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue