aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound/drivers/midi.cpp
diff options
context:
space:
mode:
authormd52011-03-03 11:18:59 +0200
committermd52011-03-03 11:18:59 +0200
commit9af4453ee5fd078e58e061854f363c56d3913943 (patch)
tree220f7cd147d9d9eaecda162436323a1eb5a1acec /engines/sci/sound/drivers/midi.cpp
parent9d6ed4de3191702ab839c6cafec308dd449b3d1f (diff)
downloadscummvm-rg350-9af4453ee5fd078e58e061854f363c56d3913943.tar.gz
scummvm-rg350-9af4453ee5fd078e58e061854f363c56d3913943.tar.bz2
scummvm-rg350-9af4453ee5fd078e58e061854f363c56d3913943.zip
SCI: Don't ignore SysEx messages at the driver level but warn instead
SysEx messages in the driver are usually the result of a bug which should be investigated and not silently ignored
Diffstat (limited to 'engines/sci/sound/drivers/midi.cpp')
-rw-r--r--engines/sci/sound/drivers/midi.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/sound/drivers/midi.cpp b/engines/sci/sound/drivers/midi.cpp
index a9b3162505..d16655928e 100644
--- a/engines/sci/sound/drivers/midi.cpp
+++ b/engines/sci/sound/drivers/midi.cpp
@@ -356,8 +356,6 @@ void MidiPlayer_Midi::send(uint32 b) {
case 0xe0:
_driver->send(b);
break;
- case 0xf0: // SysEx, ignore it
- break;
default:
warning("Ignoring MIDI event %02x", command);
}