mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 16:36:07 +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)
|
if (!WaveInfo)
|
||||||
return MM_STATUS_NO_MEMORY;
|
return MM_STATUS_NO_MEMORY;
|
||||||
|
|
||||||
/* FIXME support multiple pins for wave device */
|
if (PinCount > 1)
|
||||||
ASSERT(PinCount == 1);
|
{
|
||||||
|
/* FIXME support multiple pins for wave device */
|
||||||
|
DPRINT1("Implement support for multiple pins\n");
|
||||||
|
//ASSERT(PinCount == 1);
|
||||||
|
}
|
||||||
|
|
||||||
/* initialize wave info */
|
/* initialize wave info */
|
||||||
WaveInfo->DeviceId = MixerData->DeviceId;
|
WaveInfo->DeviceId = MixerData->DeviceId;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue