aboutsummaryrefslogtreecommitdiffstats
path: root/al/auxeffectslot.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-12-26 09:21:30 -0800
committerChris Robinson <[email protected]>2020-12-26 09:21:30 -0800
commit54719de13235f6ea216e8d200661027c047bd283 (patch)
tree469e890debbe901619a4cbbcfc6b682a4b686b80 /al/auxeffectslot.h
parent8850a3f730dee76c57d5500b0c418078c91096c7 (diff)
Avoid AL enums for the EffectSlot type
Diffstat (limited to 'al/auxeffectslot.h')
-rw-r--r--al/auxeffectslot.h2
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;