- Fixed what I understand to be a check to ensure that sysex instrument data wasn't sent to the rhythm channel. It was preventing instruments from being written to part 8.

This fixes the window crashing sound in the intro of the floppy version of Indy 4, and possibly other things. Hopefully it breaks nothing.

svn-id: r16798
This commit is contained in:
Jerome Fisher 2005-02-15 17:56:32 +00:00
parent d1f6a40583
commit e78de67c54

View File

@ -433,7 +433,7 @@ void Instrument_Roland::saveOrLoad (Serializer *s) {
void Instrument_Roland::send (MidiChannel *mc) {
if (_native_mt32) {
if (mc->getNumber() > 7)
if (mc->getNumber() > 8)
return;
_instrument.device_id = mc->getNumber();