diff options
author | Filippos Karapetis | 2009-12-25 15:58:18 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-12-25 15:58:18 +0000 |
commit | 09081ce128575d88f97d2cf926c20cd443bc91a8 (patch) | |
tree | 2861a078a23471579731616a2af18c7aad1c4f0c /engines/sci/sfx | |
parent | 924c950ed443c4e49ddbe31e6a48f96affff15e2 (diff) | |
download | scummvm-rg350-09081ce128575d88f97d2cf926c20cd443bc91a8.tar.gz scummvm-rg350-09081ce128575d88f97d2cf926c20cd443bc91a8.tar.bz2 scummvm-rg350-09081ce128575d88f97d2cf926c20cd443bc91a8.zip |
Ignore internal SysEx events in the Adlib player
svn-id: r46557
Diffstat (limited to 'engines/sci/sfx')
-rw-r--r-- | engines/sci/sfx/softseq/adlib.cpp | 2 |
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); } |