diff options
author | Chris Robinson <[email protected]> | 2018-11-19 23:48:45 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-19 23:48:45 -0800 |
commit | eb2937de8419dddc73952feef5119e6a6be2a93d (patch) | |
tree | 2996b45cec9311be2e13fbb4a28edb059ea15c4b /OpenAL32/Include | |
parent | 288dbbe8864ac2ede7031138f73a20de4da6ca31 (diff) |
Avoid another case of a variable named the same as a type
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index ca2cb663..6e315e8f 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -81,7 +81,7 @@ struct ALeffectslot { ALenum EffectType{AL_EFFECT_NULL}; ALeffectProps EffectProps{}; - EffectState *EffectState{nullptr}; + EffectState *mEffectState{nullptr}; ALfloat RoomRolloff{0.0f}; /* Added to the source's room rolloff, not multiplied. */ ALfloat DecayTime{0.0f}; |