mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
dsound: Remove an unnecessary assignment (LLVM/Clang).
This commit is contained in:
parent
fab9c71963
commit
c6bda4dc17
1 changed files with 1 additions and 1 deletions
|
@ -482,7 +482,7 @@ static LPBYTE DSOUND_MixerVol(const IDirectSoundBufferImpl *dsb, INT len)
|
|||
static DWORD DSOUND_MixInBuffer(IDirectSoundBufferImpl *dsb, DWORD writepos, DWORD fraglen)
|
||||
{
|
||||
INT len = fraglen, ilen;
|
||||
BYTE *ibuf = dsb->buffer->memory + dsb->buf_mixpos, *volbuf;
|
||||
BYTE *ibuf, *volbuf;
|
||||
DWORD oldpos, mixbufpos;
|
||||
|
||||
TRACE("buf_mixpos=%d/%d sec_mixpos=%d/%d\n", dsb->buf_mixpos, dsb->tmp_buffer_len, dsb->sec_mixpos, dsb->buflen);
|
||||
|
|
Loading…
Reference in a new issue