aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2009-12-25 15:58:18 +0000
committerFilippos Karapetis2009-12-25 15:58:18 +0000
commit09081ce128575d88f97d2cf926c20cd443bc91a8 (patch)
tree2861a078a23471579731616a2af18c7aad1c4f0c
parent924c950ed443c4e49ddbe31e6a48f96affff15e2 (diff)
downloadscummvm-rg350-09081ce128575d88f97d2cf926c20cd443bc91a8.tar.gz
scummvm-rg350-09081ce128575d88f97d2cf926c20cd443bc91a8.tar.bz2
scummvm-rg350-09081ce128575d88f97d2cf926c20cd443bc91a8.zip
Ignore internal SysEx events in the Adlib player
svn-id: r46557
-rw-r--r--engines/sci/sfx/softseq/adlib.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/sfx/softseq/adlib.cpp b/engines/sci/sfx/softseq/adlib.cpp
index 7638eb0b8d..fda878e28b 100644
--- a/engines/sci/sfx/softseq/adlib.cpp
+++ b/engines/sci/sfx/softseq/adlib.cpp
@@ -310,6 +310,8 @@ void MidiDriver_Adlib::send(uint32 b) {
case 0xd0: // Aftertouch
// Aftertouch in the OPL thing?
break;
+ case 0xf0: // SysEx, ignore it
+ break;
default:
warning("ADLIB: Unknown event %02x", command);
}