aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorJamieson Christian2003-06-01 00:14:04 +0000
committerJamieson Christian2003-06-01 00:14:04 +0000
commitc5ecbf65cbe526aa46af04140c480d17c61300e2 (patch)
treefcd8f8d83fc3920162947ff26283f68718c096fc /backends
parent69db2c0515138f78f47cdc66bbec3cc30e51063f (diff)
downloadscummvm-rg350-c5ecbf65cbe526aa46af04140c480d17c61300e2.tar.gz
scummvm-rg350-c5ecbf65cbe526aa46af04140c480d17c61300e2.tar.bz2
scummvm-rg350-c5ecbf65cbe526aa46af04140c480d17c61300e2.zip
Another slight tweak to the EV_SYSEX code
svn-id: r8201
Diffstat (limited to 'backends')
-rw-r--r--backends/midi/seq.cpp2
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);
}