diff options
-rw-r--r-- | sound/softsynth/adlib.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/softsynth/adlib.cpp b/sound/softsynth/adlib.cpp index a0c492874a..6b0dbca5bb 100644 --- a/sound/softsynth/adlib.cpp +++ b/sound/softsynth/adlib.cpp @@ -675,7 +675,9 @@ void AdlibPart::pitchBend(int16 bend) { void AdlibPart::controlChange(byte control, byte value) { switch (control) { - case 0: break; // Bank select. Not supported + case 0: + case 32: + break; // Bank select. Not supported case 1: modulationWheel(value); break; case 7: volume(value); break; case 10: break; // Pan position. Not supported. |