From 0758e786cf6a1f61396818669afc2b217427fdec Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 8 Dec 2019 18:39:20 +0100 Subject: [PATCH] Freewheeling not properly disabled --- src/sfizz/sfizz_wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/sfizz_wrapper.cpp b/src/sfizz/sfizz_wrapper.cpp index 5b27a7b4..52c593f2 100644 --- a/src/sfizz/sfizz_wrapper.cpp +++ b/src/sfizz/sfizz_wrapper.cpp @@ -213,7 +213,7 @@ void sfizz_enable_freewheeling(sfizz_synth_t* synth) void sfizz_disable_freewheeling(sfizz_synth_t* synth) { auto self = reinterpret_cast(synth); - self->enableFreeWheeling(); + self->disableFreeWheeling(); } #ifdef __cplusplus