aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-16 06:13:55 -0700
committerChris Robinson <[email protected]>2011-08-16 06:13:55 -0700
commita96f8177387818d3ef69778e3f78a9ed251326c1 (patch)
treea485318d9c3d2db0a91eb9e1d4b9e749aa9fb5f2
parent8a51a7ea2d5234555f00cf9a391eefceb1989efa (diff)
Avoid a float->int->float conversion
-rw-r--r--Alc/hrtf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index 4b3b2160..226138a0 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -77,7 +77,7 @@ static void CalcAzIndices(ALuint evidx, ALfloat az, ALuint *azidx, ALfloat *azmu
az = (M_PI*2.0f + az) * azCount[evidx] / (M_PI*2.0f);
azidx[0] = (ALuint)az % azCount[evidx];
azidx[1] = (azidx[0] + 1) % azCount[evidx];
- *azmu = az - (ALuint)az;
+ *azmu = az - floor(az);
}
// Calculates the normalized HRTF transition factor (delta) from the changes