diff options
author | Chris Robinson <[email protected]> | 2018-11-18 03:39:32 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-18 03:39:32 -0800 |
commit | 7433cb5f4cb0515dd6e314978f579ae91e2c63c4 (patch) | |
tree | 1a2e51d6e819cabcd51ac24fafe345a47a469667 /OpenAL32/Include/alu.h | |
parent | bf30eb0391b84e81353139354d2ec665942847f1 (diff) |
Avoid naming a struct member the same as an enum type
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index d309c2a7..d086bcc7 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -161,7 +161,7 @@ struct ALvoiceProps { ALfloat Direction[3]; ALfloat Orientation[2][3]; ALboolean HeadRelative; - enum DistanceModel DistanceModel; + DistanceModel mDistanceModel; enum Resampler Resampler; ALboolean DirectChannels; enum SpatializeMode SpatializeMode; |