mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-01-31 13:40:35 +00:00
Create the correct number of output nodes (also removed unused variable warning)
This commit is contained in:
parent
dd39761dbd
commit
e7ab4f3b8d
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ void fluid_LADSPA_CreateSystemNodes(fluid_LADSPA_FxUnit_t* FxUnit){
|
|||
};
|
||||
|
||||
/* Create output nodes (usually towards the sound card) */
|
||||
for (i=0; i < nr_input_nodes; i++){
|
||||
for (i=0; i < nr_output_nodes; i++){
|
||||
sprintf(str, "out%i_L",(i+1));
|
||||
fluid_LADSPA_CreateNode(FxUnit, str, fluid_LADSPA_node_is_audio | fluid_LADSPA_node_is_sink);
|
||||
sprintf(str, "out%i_R",(i+1));
|
||||
|
|
Loading…
Reference in a new issue