Change 73726d1 (Replace HTML entities in code algorithms) has broke comparison in azimuth spatialization algorithm code:
It became
// Make azimuth relative to "forward" and not "right" listener vector.
if ((azimuth <= 0) && (azimuth <= 270))
(note double less less-equal)
While previously it was:
if ((azimuth >= 0) && (azimuth <= 270))