fmsynth_note_off method

void fmsynth_note_off(
  1. Pointer<fmsynth> fm,
  2. int note
)

\brief Release a note on the FM synth.

@param fm Handle to an FM synth instance. @param note Which note to release. All currently pressed notes which match this will be put into either released state or sustained state depending on if sustain is currently held. See \ref fmsynth_set_sustain.

Implementation

void fmsynth_note_off(
  ffi.Pointer<fmsynth> fm,
  int note,
) {
  return _fmsynth_note_off(
    fm,
    note,
  );
}