diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2018-01-07 22:20:08 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2018-01-07 22:20:08 -0800 |
commit | d547f52d8f4d584e9f6c3b56b8dd59f27e3dfe08 (patch) | |
tree | 4780f360faf2353240328990a8ad9a73e7f3f427 /Alc/uhjfilter.c | |
parent | 56e9cb69d3aba60016701c6478b3f08c08aa3171 (diff) |
Move the UNEXPECTED macro to the main header and rename it
Diffstat (limited to 'Alc/uhjfilter.c')
-rw-r--r-- | Alc/uhjfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/uhjfilter.c b/Alc/uhjfilter.c index 8e2febae..6f9fb37d 100644 --- a/Alc/uhjfilter.c +++ b/Alc/uhjfilter.c @@ -20,7 +20,7 @@ static void allpass_process(AllPassState *state, ALfloat *restrict dst, const AL { ALsizei i; - if(todo > 1) + if(LIKELY(todo > 1)) { dst[0] = aa*(src[0] + state->y[1]) - state->x[1]; dst[1] = aa*(src[1] + state->y[0]) - state->x[0]; |