Commit 55fdb039 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

msacm32: Fix copy-paste error.

Spotted by Nikolay via Coverity. Signed-off-by: 's avatarAndrew Eikum <aeikum@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent e5a9055d
......@@ -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;
}
......
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