Midi: added constants for pitch bend

This commit is contained in:
Tobias Doerffel
2014-01-26 14:02:05 +01:00
parent f519bec995
commit bd6fb03d44

View File

@@ -119,4 +119,7 @@ const int MidiMaxNote = 127;
const int MidiMaxPanning = 127;
const int MidiMinPanning = -128;
const int MidiMinPitchBend = 0;
const int MidiMaxPitchBend = 16383;
#endif