Commit bea7933d authored by Jeff Zaroyko's avatar Jeff Zaroyko Committed by Alexandre Julliard

dsound: Fix a typo in convert_32_to_24.

parent 202a2ab7
......@@ -159,7 +159,7 @@ static void convert_32_to_16 (const void *src, void *dst)
static void convert_32_to_24 (const void *src, void *dst)
{
DWORD dest = le32(*(DWORD*)dst);
DWORD dest = le32(*(DWORD*)src);
BYTE *dest24 = dst;
dest24[0] = dest / 256;
......
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