Freewheeling not properly disabled

This commit is contained in:
Paul Ferrand 2019-12-08 18:39:20 +01:00
parent 4fb81e4a2e
commit 0758e786cf

View file

@ -213,7 +213,7 @@ void sfizz_enable_freewheeling(sfizz_synth_t* synth)
void sfizz_disable_freewheeling(sfizz_synth_t* synth)
{
auto self = reinterpret_cast<sfz::Synth*>(synth);
self->enableFreeWheeling();
self->disableFreeWheeling();
}
#ifdef __cplusplus