Ticket #9262: midiparser_jumpToTick.patch

File midiparser_jumpToTick.patch, 557 bytes (added by SF/sven3000, 14 years ago)

Patch that changes MidiParser::jumpToTick to not send note on messages even if fireEvents==true

  • sound/midiparser.cpp

     
    402402                                                _driver->sysEx(info.ext.data, (uint16)info.length-1);
    403403                                        else
    404404                                                _driver->sysEx(info.ext.data, (uint16)info.length);
    405                                 } else
     405                                } else if( info.command() != 0x9 ) // Don't send note on; dong so creates a "warble" with some instruments on the MT-32
    406406                                        sendToDriver(info.event, info.basic.param1, info.basic.param2);
    407407                        }
    408408