SCI: AdLib: process patch change commands when playswitch is off.

svn-id: r52595
This commit is contained in:
Walter van Niftrik 2010-09-06 16:09:19 +00:00
parent c54a97005f
commit ba6bc8f17b

View File

@ -586,7 +586,7 @@ void MidiDriver_AdLib::voiceOn(int voice, int note, int velocity) {
}
// Set patch if different from current patch
if ((patch != _voices[voice].patch) && _playSwitch)
if (patch != _voices[voice].patch)
setPatch(voice, patch);
_voices[voice].velocity = velocity;