Commit 1d3c4b4f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

fixed32: debug typo

parent b418436b
......@@ -69,7 +69,7 @@ static void FilterFI32 (aout_mixer_t *mixer, block_t *block, float volume)
for (size_t n = block->i_buffer / sizeof (*p); n > 0; n--)
{
*p = (*p * mult) >> 33; // FIXED32_FRACBITS;
*p = (*p * mult) >> FIXED32_FRACBITS;
p++;
}
}
......
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