aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2002-12-08 14:09:35 +0000
committerMax Horn2002-12-08 14:09:35 +0000
commitb7c5a777175d37a45605f5c3bcd2eb47b08988b4 (patch)
treea7cfe8a2d36070a54a41429dcf62c9cbb91578a5 /sound
parent27681912884ae25c28c2e78ff33329f49f4c590b (diff)
downloadscummvm-rg350-b7c5a777175d37a45605f5c3bcd2eb47b08988b4.tar.gz
scummvm-rg350-b7c5a777175d37a45605f5c3bcd2eb47b08988b4.tar.bz2
scummvm-rg350-b7c5a777175d37a45605f5c3bcd2eb47b08988b4.zip
Ignore weird MIDI messages for now; maybe Jamieson knows more?
svn-id: r5880
Diffstat (limited to 'sound')
-rw-r--r--sound/mididrv.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp
index df679c8ea7..4b31058fce 100644
--- a/sound/mididrv.cpp
+++ b/sound/mididrv.cpp
@@ -968,6 +968,10 @@ void MidiDriver_QT::send(uint32 b)
// pitch bend changes - ignore those for now
break;
+ case 0x12:
+ // What is this ?!? Ignore it for now
+ break;
+
default:
// Error: Unknown MIDI effect: 007f76b3
warning("Unknown MIDI effect: %08x", (int)b);