mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[MMIXER]
- Disable assert for now svn path=/trunk/; revision=49167
This commit is contained in:
parent
aa8c6826c3
commit
53ddbca64c
1 changed files with 6 additions and 2 deletions
|
@ -357,8 +357,12 @@ MMixerInitializeWaveInfo(
|
|||
if (!WaveInfo)
|
||||
return MM_STATUS_NO_MEMORY;
|
||||
|
||||
/* FIXME support multiple pins for wave device */
|
||||
ASSERT(PinCount == 1);
|
||||
if (PinCount > 1)
|
||||
{
|
||||
/* FIXME support multiple pins for wave device */
|
||||
DPRINT1("Implement support for multiple pins\n");
|
||||
//ASSERT(PinCount == 1);
|
||||
}
|
||||
|
||||
/* initialize wave info */
|
||||
WaveInfo->DeviceId = MixerData->DeviceId;
|
||||
|
|
Loading…
Reference in a new issue