diff options
-rw-r--r-- | sound/imuse.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/imuse.cpp b/sound/imuse.cpp index 8490f20b20..a0df85aa70 100644 --- a/sound/imuse.cpp +++ b/sound/imuse.cpp @@ -1930,6 +1930,9 @@ byte *Player::parse_midi(byte *s) case 93: /* chorus */ part->set_chorus(value); break; + case 123: /* unhold pedal */ + part->set_pedal(false); + break; default: warning("parse_midi: invalid control %d", control); } |