diff options
| author | Jamieson Christian | 2003-06-01 00:14:04 +0000 | 
|---|---|---|
| committer | Jamieson Christian | 2003-06-01 00:14:04 +0000 | 
| commit | c5ecbf65cbe526aa46af04140c480d17c61300e2 (patch) | |
| tree | fcd8f8d83fc3920162947ff26283f68718c096fc | |
| parent | 69db2c0515138f78f47cdc66bbec3cc30e51063f (diff) | |
| download | scummvm-rg350-c5ecbf65cbe526aa46af04140c480d17c61300e2.tar.gz scummvm-rg350-c5ecbf65cbe526aa46af04140c480d17c61300e2.tar.bz2 scummvm-rg350-c5ecbf65cbe526aa46af04140c480d17c61300e2.zip | |
Another slight tweak to the EV_SYSEX code
svn-id: r8201
| -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);  } | 
