From c5ecbf65cbe526aa46af04140c480d17c61300e2 Mon Sep 17 00:00:00 2001 From: Jamieson Christian Date: Sun, 1 Jun 2003 00:14:04 +0000 Subject: Another slight tweak to the EV_SYSEX code svn-id: r8201 --- backends/midi/seq.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends') 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); } -- cgit v1.2.3