Commit a3f33daa authored by Mark Harmstone's avatar Mark Harmstone Committed by Alexandre Julliard

winealsa: Support up to 6 channels.

parent 52345858
......@@ -1830,8 +1830,8 @@ static HRESULT WINAPI AudioClient_GetMixFormat(IAudioClient *iface,
goto exit;
}
if(max_channels > 2)
fmt->Format.nChannels = 2;
if(max_channels > 6)
fmt->Format.nChannels = 6;
else
fmt->Format.nChannels = max_channels;
......
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