This commit is contained in:
Francois Best 2015-02-27 14:54:04 +01:00
parent 352e3d10fb
commit 3eb65db1a4
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ template<class SerialPort, class Settings>
void MidiInterface<SerialPort, Settings>::sendPitchBend(double inPitchValue,
Channel inChannel)
{
const int value = inPitchValue * MIDI_PITCHBEND_MAX * Settings::Toto;
const int value = inPitchValue * MIDI_PITCHBEND_MAX;
sendPitchBend(value, inChannel);
}