Commit d82cca65 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

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

parent f8fa169d
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment