diff options
Diffstat (limited to 'alc/hrtf.h')
-rw-r--r-- | alc/hrtf.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -88,9 +88,11 @@ struct DirectHrtfState { DEF_FAM_NEWDEL(DirectHrtfState, Coeffs) }; +struct ElevRadius { float value; }; +struct AzimRadius { float value; }; struct AngularPoint { - ALfloat Elev; - ALfloat Azim; + ElevRadius Elev; + AzimRadius Azim; }; |