Skip to content

Commit 3eb65db

Browse files
author
Francois Best
committed
Fixed #30
1 parent 352e3d1 commit 3eb65db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MIDI.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ template<class SerialPort, class Settings>
279279
void MidiInterface<SerialPort, Settings>::sendPitchBend(double inPitchValue,
280280
Channel inChannel)
281281
{
282-
const int value = inPitchValue * MIDI_PITCHBEND_MAX * Settings::Toto;
282+
const int value = inPitchValue * MIDI_PITCHBEND_MAX;
283283
sendPitchBend(value, inChannel);
284284
}
285285

0 commit comments

Comments
 (0)