diff options
author | Travis Howell | 2006-09-21 01:34:10 +0000 |
---|---|---|
committer | Travis Howell | 2006-09-21 01:34:10 +0000 |
commit | d3b39c221bc55bff3425343f1c1f026ff77e09b7 (patch) | |
tree | 3fdff49241ae3cf6ff4ac8fb5dbc40a8a6c3f720 | |
parent | efc3fb4a3a22f988f67d2c0c12a7ab5de5293143 (diff) | |
download | scummvm-rg350-d3b39c221bc55bff3425343f1c1f026ff77e09b7.tar.gz scummvm-rg350-d3b39c221bc55bff3425343f1c1f026ff77e09b7.tar.bz2 scummvm-rg350-d3b39c221bc55bff3425343f1c1f026ff77e09b7.zip |
Re-enable warning for unknown MIDI events
svn-id: r23958
-rw-r--r-- | engines/simon/midiparser_s1d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/midiparser_s1d.cpp b/engines/simon/midiparser_s1d.cpp index 80755044f8..1193f8578e 100644 --- a/engines/simon/midiparser_s1d.cpp +++ b/engines/simon/midiparser_s1d.cpp @@ -115,7 +115,7 @@ void MidiParser_S1D::parseNextEvent(EventInfo &info) { // OTherwise fall through to default. default: - //warning("MidiParser_S1D: Unexpected byte 0x%02X found!\n", (int) info.command()); + warning("MidiParser_S1D: Unexpected byte 0x%02X found!\n", (int) info.command()); break; } } |