Amend comment in fluidsynth_fx.c

This commit is contained in:
Tom M 2020-02-16 19:55:28 +01:00 committed by GitHub
parent 7ea9e21081
commit 3b851da6f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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];