diff options
author | Martin Kiewitz | 2009-12-25 16:29:16 +0000 |
---|---|---|
committer | Martin Kiewitz | 2009-12-25 16:29:16 +0000 |
commit | 16eff8660dce2d60cfe5291041bbf618f149766c (patch) | |
tree | b3c1a491b972c0f401a1e03d33025d7080cf39bd /engines/sci/sfx | |
parent | 86701f4019b754c94a8b10b4a32d0b4dbef5a60f (diff) | |
download | scummvm-rg350-16eff8660dce2d60cfe5291041bbf618f149766c.tar.gz scummvm-rg350-16eff8660dce2d60cfe5291041bbf618f149766c.tar.bz2 scummvm-rg350-16eff8660dce2d60cfe5291041bbf618f149766c.zip |
SCI/newmusic: Adlib driver / added comment that sierra adlib driver did not support aftertouch
svn-id: r46559
Diffstat (limited to 'engines/sci/sfx')
-rw-r--r-- | engines/sci/sfx/softseq/adlib.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/sci/sfx/softseq/adlib.cpp b/engines/sci/sfx/softseq/adlib.cpp index fe765b6069..e29214c915 100644 --- a/engines/sci/sfx/softseq/adlib.cpp +++ b/engines/sci/sfx/softseq/adlib.cpp @@ -308,11 +308,9 @@ void MidiDriver_Adlib::send(uint32 b) { case 0xc0: _channels[channel].patch = op1; break; + // The original adlib driver from sierra ignores aftertouch completely, so should we case 0xa0: // Polyphonic key pressure (aftertouch) - // Aftertouch in the OPL thing? - break; case 0xd0: // Channel pressure (aftertouch) - // Aftertouch in the OPL thing? break; case 0xf0: // SysEx, ignore it break; |