diff options
author | Chris Robinson <[email protected]> | 2019-12-06 23:11:26 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-12-06 23:11:26 -0800 |
commit | 3f559e7e6018387bd200bcf5630f97752bcc0dc5 (patch) | |
tree | 06e8c11d9616e885465be5470ec0ffca7892ae1e /alc/hrtf.h | |
parent | c9a6527121dd0246b2a5c333cc39f1309ed132a5 (diff) |
Rename a couple structs for clarity
Diffstat (limited to 'alc/hrtf.h')
-rw-r--r-- | alc/hrtf.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -80,11 +80,11 @@ struct DirectHrtfState { DEF_FAM_NEWDEL(DirectHrtfState, Coeffs) }; -struct ElevRadius { float value; }; -struct AzimRadius { float value; }; +struct EvRadians { float value; }; +struct AzRadians { float value; }; struct AngularPoint { - ElevRadius Elev; - AzimRadius Azim; + EvRadians Elev; + AzRadians Azim; }; |