diff options
author | Jamieson Christian | 2003-06-01 02:25:07 +0000 |
---|---|---|
committer | Jamieson Christian | 2003-06-01 02:25:07 +0000 |
commit | e2b2f8cc64044fc581657c79b08e2c7b243e15e3 (patch) | |
tree | e591a62d946e0608711eb17a644c1ec1811405ee /backends/midi | |
parent | 8f4660fb5c85b3168b02ed3d5d53060209246cca (diff) | |
download | scummvm-rg350-e2b2f8cc64044fc581657c79b08e2c7b243e15e3.tar.gz scummvm-rg350-e2b2f8cc64044fc581657c79b08e2c7b243e15e3.tar.bz2 scummvm-rg350-e2b2f8cc64044fc581657c79b08e2c7b243e15e3.zip |
Fixed stupid SysEx error
svn-id: r8211
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) { |