From 3eb65db1a4d84fc50b9aa9736d31f5e87f70a244 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Fri, 27 Feb 2015 14:54:04 +0100 Subject: [PATCH] Fixed #30 --- src/MIDI.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }