Give the Windows MMTimer test a better chance of passing
[ardour.git] / libs / fluidsynth / src / fluid_lfo.c
1 #include "fluid_lfo.h"
2
3 void
4 fluid_lfo_set_incr(fluid_lfo_t* lfo, fluid_real_t increment)
5 {
6   lfo->increment = increment;
7 }
8
9 void
10 fluid_lfo_set_delay(fluid_lfo_t* lfo, unsigned int delay)
11 {
12   lfo->delay = delay;
13 }