diff options
-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 f528a51a48..9bb0aaab5a 100644 --- a/backends/midi/seq.cpp +++ b/backends/midi/seq.cpp @@ -176,7 +176,7 @@ void MidiDriver_SEQ::sysEx (byte *msg, uint16 length) { } buf[position++] = 0xF7; while (position % 8 != 0) - buf[position++] = 0; + buf[position++] = 0xFF; // Filler bytes write (device, buf, position); } |