diff options
-rw-r--r-- | simon/midi.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/simon/midi.cpp b/simon/midi.cpp index e80021d6a9..1dbd4db623 100644 --- a/simon/midi.cpp +++ b/simon/midi.cpp @@ -321,8 +321,10 @@ void MidiPlayer::read_next_note(Track *t, NoteRec *nr) if ((cmd_byte & 0xF0) != 0xE0) break; + warning ("Malformed pitch bend event skipped"); + warning ("If music sounds screwed up now, submit a bug report"); track_read_byte(t); - track_read_byte(t); +// track_read_byte(t); } if (!(cmd_byte & 0x80)) { |