winealsa.drv: Remove "strange number of channels" FIXME.

oldstable
Andrew Eikum 2012-01-12 08:06:38 -06:00 committed by Alexandre Julliard
parent f8fa169da0
commit d82cca65ed
1 changed files with 2 additions and 4 deletions

View File

@ -1407,11 +1407,9 @@ static HRESULT WINAPI AudioClient_GetMixFormat(IAudioClient *iface,
goto exit;
}
if(max_channels > 2){
FIXME("Don't know what to do with %u channels, pretending there's "
"only 2 channels\n", max_channels);
if(max_channels > 2)
fmt->Format.nChannels = 2;
}else
else
fmt->Format.nChannels = max_channels;
fmt->dwChannelMask = get_channel_mask(fmt->Format.nChannels);