winecoreaudio: MOD_MIDIPORT has 0 voices and notes and FFFF ChannelMask.

This commit is contained in:
Jörg Höhle 2010-02-03 09:58:12 +01:00 committed by Alexandre Julliard
parent bceee27592
commit 9c8ce89bf0
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ LONG CoreAudio_MIDIInit(void)
destinations[i].caps.wPid = 0x0001; destinations[i].caps.wPid = 0x0001;
destinations[i].caps.vDriverVersion = 0x0001; destinations[i].caps.vDriverVersion = 0x0001;
destinations[i].caps.dwSupport = 0; destinations[i].caps.dwSupport = 0;
destinations[i].caps.wVoices = 16; destinations[i].caps.wVoices = 0;
destinations[i].caps.wNotes = 16; destinations[i].caps.wNotes = 0;
} }
return DRV_SUCCESS; return DRV_SUCCESS;
} }