diff --git a/src/MIDI.hpp b/src/MIDI.hpp index 7e79d3c..b24a575 100644 --- a/src/MIDI.hpp +++ b/src/MIDI.hpp @@ -279,7 +279,7 @@ template void MidiInterface::sendPitchBend(double inPitchValue, Channel inChannel) { - const int value = inPitchValue * MIDI_PITCHBEND_MAX * Settings::Toto; + const int value = inPitchValue * MIDI_PITCHBEND_MAX; sendPitchBend(value, inChannel); }