msacm32: Fix copy-paste error.
Spotted by Nikolay via Coverity. Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e5a9055dac
commit
55fdb03942
|
@ -1154,7 +1154,7 @@ static LRESULT PCM_StreamOpen(PACMDRVSTREAMINSTANCE adsi)
|
|||
idx += 4;
|
||||
break;
|
||||
case 24:
|
||||
if (adsi->pwfxDst->nBlockAlign != 3 * adsi->pwfxSrc->nChannels) {
|
||||
if (adsi->pwfxDst->nBlockAlign != 3 * adsi->pwfxDst->nChannels) {
|
||||
FIXME("Destination: 24-bit samples must be packed\n");
|
||||
return MMSYSERR_NOTSUPPORTED;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue