dsound: Remove an unnecessary assignment (LLVM/Clang).

This commit is contained in:
Austin English 2012-01-30 22:47:46 -06:00 committed by Alexandre Julliard
parent fab9c71963
commit c6bda4dc17

View file

@ -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);