diff options
author | Max Horn | 2002-10-24 01:35:31 +0000 |
---|---|---|
committer | Max Horn | 2002-10-24 01:35:31 +0000 |
commit | 367b27b3738e1d64814c7b7281747d856d38e4b8 (patch) | |
tree | a6db9e8494686d892967032dd91fc1d94a3d0be8 /sound | |
parent | 9491c85e4e966b3226dea0c4d1702ce2754c8703 (diff) | |
download | scummvm-rg350-367b27b3738e1d64814c7b7281747d856d38e4b8.tar.gz scummvm-rg350-367b27b3738e1d64814c7b7281747d856d38e4b8.tar.bz2 scummvm-rg350-367b27b3738e1d64814c7b7281747d856d38e4b8.zip |
QuickTime midi driver will now not error out on pitch bend changes. Still, pitch bending is very wrong
svn-id: r5293
Diffstat (limited to 'sound')
-rw-r--r-- | sound/mididrv.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp index f330b0acff..82bf133fd7 100644 --- a/sound/mididrv.cpp +++ b/sound/mididrv.cpp @@ -799,6 +799,12 @@ void MidiDriver_QT::send(uint32 b) for (int i = 0; i < 128; i++) NAPlayNote(qtNoteAllocator, qtNoteChannel[chanID], i, 0); break; + case 0x64: + case 0x65: + case 0x06: + case 0x26: + // pitch bend changes - ignore those for now + break; default: error("Unknown MIDI effect: %08x\n", (int)b); |