Fixed #30
This commit is contained in:
parent
352e3d10fb
commit
3eb65db1a4
|
|
@ -279,7 +279,7 @@ template<class SerialPort, class Settings>
|
||||||
void MidiInterface<SerialPort, Settings>::sendPitchBend(double inPitchValue,
|
void MidiInterface<SerialPort, Settings>::sendPitchBend(double inPitchValue,
|
||||||
Channel inChannel)
|
Channel inChannel)
|
||||||
{
|
{
|
||||||
const int value = inPitchValue * MIDI_PITCHBEND_MAX * Settings::Toto;
|
const int value = inPitchValue * MIDI_PITCHBEND_MAX;
|
||||||
sendPitchBend(value, inChannel);
|
sendPitchBend(value, inChannel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue