From e2b2f8cc64044fc581657c79b08e2c7b243e15e3 Mon Sep 17 00:00:00 2001 From: Jamieson Christian Date: Sun, 1 Jun 2003 02:25:07 +0000 Subject: Fixed stupid SysEx error svn-id: r8211 --- backends/midi/seq.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/midi') 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) { -- cgit v1.2.3