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

wineoss.drv: Don't set volume in IAudioClient::Initialize.

parent abd5d5a3
......@@ -931,10 +931,6 @@ static HRESULT WINAPI AudioClient_Initialize(IAudioClient *iface,
return E_FAIL;
}
mask = (100 << 8) | 100;
if(ioctl(This->fd, SNDCTL_DSP_SETPLAYVOL, &mask) < 0)
WARN("SETPLAYVOL failed: %d (%s)\n", errno, strerror(errno));
This->fmt = clone_format(fmt);
if(!This->fmt){
LeaveCriticalSection(&This->lock);
......
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