fluid-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [fluid-dev] FluidSynth 2.0 beta issue


From: Tom M.
Subject: Re: [fluid-dev] FluidSynth 2.0 beta issue
Date: Mon, 23 Jul 2018 14:13:35 +0200

It should be

fluid_synth_activate_octave_tuning(context->synth, jtuningBank,
jtuningProgram, name, derivations, FALSE);

i.e. no quotes around FALSE and (char*) cast intentionally removed.
FALSE is usually defined as macro which expands to 0 during
compilation. Thus, if the above line doesnt compile, use

fluid_synth_activate_octave_tuning(context->synth, jtuningBank,
jtuningProgram, name, derivations, 0);

Tom



reply via email to

[Prev in Thread] Current Thread [Next in Thread]