diff options
author | Chris Robinson <[email protected]> | 2019-04-12 19:19:24 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-04-12 19:19:24 -0700 |
commit | 629cfa04a3248bacc9923b879a9c8f0dbe965951 (patch) | |
tree | 0277e050a35641921b19cff3ad9e8089740e4e4e /Alc/hrtf.h | |
parent | 6761fe137fe42aa8dbb0c1a5fac13993ff93f784 (diff) |
Fix some integer truncation warnings in MSVC
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r-- | Alc/hrtf.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,6 +115,6 @@ void GetHrtfCoeffs(const HrtfEntry *Hrtf, ALfloat elevation, ALfloat azimuth, AL * ordered and scaled according to the matrix input. Note the specified virtual * positions should be in degrees, not radians! */ -void BuildBFormatHrtf(const HrtfEntry *Hrtf, DirectHrtfState *state, const ALsizei NumChannels, const AngularPoint *AmbiPoints, const ALfloat (*RESTRICT AmbiMatrix)[MAX_AMBI_CHANNELS], const ALsizei AmbiCount, const ALfloat *RESTRICT AmbiOrderHFGain); +void BuildBFormatHrtf(const HrtfEntry *Hrtf, DirectHrtfState *state, const ALsizei NumChannels, const AngularPoint *AmbiPoints, const ALfloat (*RESTRICT AmbiMatrix)[MAX_AMBI_CHANNELS], const size_t AmbiCount, const ALfloat *RESTRICT AmbiOrderHFGain); #endif /* ALC_HRTF_H */ |