From fa2ab259fa540c487eeb7f032073d5b00abe6fb1 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 28 Oct 2018 23:45:14 +0100 Subject: [PATCH] [wavetable] stop sets playing to 0 --- src/synth/wavetable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/synth/wavetable.c b/src/synth/wavetable.c index 04d1dd42..f7237c2b 100644 --- a/src/synth/wavetable.c +++ b/src/synth/wavetable.c @@ -164,7 +164,7 @@ uint_t aubio_wavetable_stop ( aubio_wavetable_t * s ) //aubio_wavetable_set_freq (s, 0.); aubio_wavetable_set_amp (s, 0.); //s->last_pos = 0; - return aubio_wavetable_set_playing (s, 1); + return aubio_wavetable_set_playing (s, 0); } uint_t aubio_wavetable_set_freq ( aubio_wavetable_t * s, smpl_t freq ) -- 2.11.0