mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-01-09 11:20:45 +00:00
14 lines
214 B
C
14 lines
214 B
C
|
#include "fluid_lfo.h"
|
||
|
|
||
|
void
|
||
|
fluid_lfo_set_incr(fluid_lfo_t* lfo, fluid_real_t increment)
|
||
|
{
|
||
|
lfo->increment = increment;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
fluid_lfo_set_delay(fluid_lfo_t* lfo, unsigned int delay)
|
||
|
{
|
||
|
lfo->delay = delay;
|
||
|
}
|