diff options
author | James Brown | 2002-08-21 11:24:33 +0000 |
---|---|---|
committer | James Brown | 2002-08-21 11:24:33 +0000 |
commit | 662256f25dbe43abf67077a804e225738765f009 (patch) | |
tree | a4657083c4a148c6285480a68df8681ef234bdbc /sound | |
parent | aeee5d453773c04e1cf4f9fe7976e1bdab8bb9b4 (diff) | |
download | scummvm-rg350-662256f25dbe43abf67077a804e225738765f009.tar.gz scummvm-rg350-662256f25dbe43abf67077a804e225738765f009.tar.bz2 scummvm-rg350-662256f25dbe43abf67077a804e225738765f009.zip |
Add missing iMUSE midi effect
svn-id: r4784
Diffstat (limited to 'sound')
-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); } |