diff options
Diffstat (limited to 'backends/midi')
-rw-r--r-- | backends/midi/seq.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp index 3f17918920..fc7777ece2 100644 --- a/backends/midi/seq.cpp +++ b/backends/midi/seq.cpp @@ -143,7 +143,7 @@ void MidiDriver_SEQ::sysEx (byte *msg, uint16 length) { byte *chr = msg; buf[position++] = SEQ_MIDIPUTC; - buf[position++] = 0xFF; + buf[position++] = 0xF0; buf[position++] = _device_num; buf[position++] = 0; for (; length; --length, ++chr) { |