From 09081ce128575d88f97d2cf926c20cd443bc91a8 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 25 Dec 2009 15:58:18 +0000 Subject: Ignore internal SysEx events in the Adlib player svn-id: r46557 --- engines/sci/sfx/softseq/adlib.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'engines/sci') 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); } -- cgit v1.2.3