Commit 21914e2f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

integer: fix typo (fix #9127)

parent 47376e17
......@@ -77,7 +77,7 @@ static void FilterS16N (audio_volume_t *vol, block_t *block, float volume)
if (s >= (INT16_MAX << 8))
*p = INT16_MAX;
else
if (s < (INT_MIN << 8))
if (s < (INT16_MIN << 8))
*p = INT16_MIN;
else
*p = s >> 8;
......
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