diff options
author | Chris Robinson <[email protected]> | 2012-04-28 03:58:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-28 03:58:58 -0700 |
commit | 267d38cf2057bb78f5d03c7f923573d1da2c84be (patch) | |
tree | c7a851382adfa24370ae916d3e16fb0c75bfb627 /OpenAL32 | |
parent | 26456f13e19dd15bdb9e56f85660568707817a7e (diff) |
Flip the parameters to aluCart2LUTpos, so it behaves a bit more like atan2
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 5345c286..9d1eb81b 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -296,7 +296,7 @@ static __inline void aluNormalize(ALfloat *inVector) ALvoid aluInitPanning(ALCdevice *Device); -ALint aluCart2LUTpos(ALfloat re, ALfloat im); +ALint aluCart2LUTpos(ALfloat im, ALfloat re); ALvoid CalcSourceParams(struct ALsource *ALSource, const ALCcontext *ALContext); ALvoid CalcNonAttnSourceParams(struct ALsource *ALSource, const ALCcontext *ALContext); |