mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-01 15:55:45 +00:00
QuickTime midi driver will now not error out on pitch bend changes. Still, pitch bending is very wrong
svn-id: r5293
This commit is contained in:
parent
9491c85e4e
commit
367b27b373
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user