aboutsummaryrefslogtreecommitdiff
path: root/sound/mididrv.cpp
diff options
context:
space:
mode:
authorJames Brown2002-04-20 18:53:45 +0000
committerJames Brown2002-04-20 18:53:45 +0000
commitf509c3166d38a3ab696081e0c74458bd1d0e007d (patch)
treeb305a3aae0e20a3eb9d4d95462b94f1fc85a91ab /sound/mididrv.cpp
parent80b860999bdb38d1f4fa7e9b82c21b934e192616 (diff)
downloadscummvm-rg350-f509c3166d38a3ab696081e0c74458bd1d0e007d.tar.gz
scummvm-rg350-f509c3166d38a3ab696081e0c74458bd1d0e007d.tar.bz2
scummvm-rg350-f509c3166d38a3ab696081e0c74458bd1d0e007d.zip
Warning fix.
svn-id: r4029
Diffstat (limited to 'sound/mididrv.cpp')
-rw-r--r--sound/mididrv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp
index 9002ded512..14a356dc10 100644
--- a/sound/mididrv.cpp
+++ b/sound/mididrv.cpp
@@ -409,7 +409,7 @@ void MidiDriver_SEQ::close() {
void MidiDriver_SEQ::send(uint32 b)
{
- unsigned char buf[256];
+ unsigned long buf[256];
int position = 0;
switch (b & 0xF0) {