Module: wine Branch: master Commit: 9c8ce89bf03827a78462fd66d218bfa765eda4cb URL: http://source.winehq.org/git/wine.git/?a=commit;h=9c8ce89bf03827a78462fd66d2...
Author: Jörg Höhle hoehle@users.sourceforge.net Date: Wed Feb 3 09:58:12 2010 +0100
winecoreaudio: MOD_MIDIPORT has 0 voices and notes and FFFF ChannelMask.
---
dlls/winecoreaudio.drv/midi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winecoreaudio.drv/midi.c b/dlls/winecoreaudio.drv/midi.c index e66d435..b6b26ea 100644 --- a/dlls/winecoreaudio.drv/midi.c +++ b/dlls/winecoreaudio.drv/midi.c @@ -191,8 +191,8 @@ LONG CoreAudio_MIDIInit(void) destinations[i].caps.wPid = 0x0001; destinations[i].caps.vDriverVersion = 0x0001; destinations[i].caps.dwSupport = 0; - destinations[i].caps.wVoices = 16; - destinations[i].caps.wNotes = 16; + destinations[i].caps.wVoices = 0; + destinations[i].caps.wNotes = 0; } return DRV_SUCCESS; }