Skip to content

Commit

Permalink
Amend comment in fluidsynth_fx.c
Browse files Browse the repository at this point in the history
  • Loading branch information
derselbst authored Feb 16, 2020
1 parent 7ea9e21 commit 3b851da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/fluidsynth_fx.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ int fx_function(void *data, int len,
}

/* Apply your effects here. In this example, the gain is
* applied to all the output buffers. */
* applied to all the dry-audio output buffers. */
for(i = 0; i < nout; i++)
{
float *out_i = out[i];
Expand All @@ -81,6 +81,7 @@ int fx_function(void *data, int len,
}
}

/* Apply the same effect to all available effect buffer. */
for(i = 0; i < nfx; i++)
{
float *fx_i = fx[i];
Expand Down

0 comments on commit 3b851da

Please sign in to comment.