mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-07 16:21:18 +00:00
Amend comment in fluidsynth_fx.c
This commit is contained in:
parent
7ea9e21081
commit
3b851da6f7
1 changed files with 2 additions and 1 deletions
|
@ -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];
|
||||
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue