diff options
author | Chris Robinson <[email protected]> | 2020-12-26 09:21:30 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-26 09:21:30 -0800 |
commit | 54719de13235f6ea216e8d200661027c047bd283 (patch) | |
tree | 469e890debbe901619a4cbbcfc6b682a4b686b80 /al/auxeffectslot.h | |
parent | 8850a3f730dee76c57d5500b0c418078c91096c7 (diff) |
Avoid AL enums for the EffectSlot type
Diffstat (limited to 'al/auxeffectslot.h')
-rw-r--r-- | al/auxeffectslot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.h b/al/auxeffectslot.h index c2967c93..4d3c8640 100644 --- a/al/auxeffectslot.h +++ b/al/auxeffectslot.h @@ -34,7 +34,7 @@ struct ALeffectslot { ALbuffer *Buffer{nullptr}; struct { - ALenum Type{AL_EFFECT_NULL}; + EffectSlotType Type{EffectSlotType::None}; EffectProps Props{}; al::intrusive_ptr<EffectState> State; |