diff options
author | Chris Robinson <[email protected]> | 2011-05-19 17:57:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-05-19 17:57:14 -0700 |
commit | 7396aaf2c28ef4e16c3f27d0cc3c06cc09134d41 (patch) | |
tree | 994c34cc602b4fd03d7eee2bc3ca3620c142a771 /OpenAL32/Include/alMain.h | |
parent | 555ccce4eec6afbe3a14fe5a9de6d04e1e74fdcd (diff) |
Fix HRTF elevation calculation
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index e0c05ea8..67481e67 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -600,7 +600,7 @@ ALboolean IsValidChannels(ALenum type); #define HRTF_BITS (7) #define HRTF_LENGTH (1<<HRTF_BITS) #define HRTF_LENGTH_MASK (HRTF_LENGTH-1) -void GetHrtfCoeffs(ALfloat azimuth, ALfloat angle, const ALshort **left, const ALshort **right); +void GetHrtfCoeffs(ALfloat elevation, ALfloat angle, const ALshort **left, const ALshort **right); void al_print(const char *fname, unsigned int line, const char *fmt, ...) PRINTF_STYLE(3,4); |