diff options
author | Chris Robinson <[email protected]> | 2011-08-16 18:33:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-16 18:33:10 -0700 |
commit | 04dad28228a694e681d722826615245466a3aa16 (patch) | |
tree | 54860fb951339bb4af88df4c620383323427a5fd /Alc/hrtf.c | |
parent | a96f8177387818d3ef69778e3f78a9ed251326c1 (diff) |
Use mini/maxi/clampi and minu/maxu/clampu to replace min/max calls
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ static void CalcEvIndices(ALfloat ev, ALuint *evidx, ALfloat *evmu) { ev = (M_PI/2.0f + ev) * (ELEV_COUNT-1) / M_PI; evidx[0] = (ALuint)ev; - evidx[1] = minF(evidx[0] + 1, ELEV_COUNT-1); + evidx[1] = minu(evidx[0] + 1, ELEV_COUNT-1); *evmu = ev - evidx[0]; } |