aboutsummaryrefslogtreecommitdiffstats
path: root/al/auxeffectslot.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-03-10 22:44:02 -0800
committerChris Robinson <[email protected]>2023-03-10 23:03:07 -0800
commitc9bedb1a4c8f79e361992e979dbfb2f6f5da2b8b (patch)
tree877b59be5b3a77088ec83c83b0a50813f1c0b7e7 /al/auxeffectslot.cpp
parent5aeeffec8063e51f647403b2bbff68bf900b0f9c (diff)
Convert EAX chorus and flanger effects
Diffstat (limited to 'al/auxeffectslot.cpp')
-rw-r--r--al/auxeffectslot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.cpp b/al/auxeffectslot.cpp
index e716beb7..7bfd14ae 100644
--- a/al/auxeffectslot.cpp
+++ b/al/auxeffectslot.cpp
@@ -1058,7 +1058,7 @@ void ALeffectslot::eax_initialize(ALCcontext& al_context, EaxFxSlotIndexValue in
eax_effect_ = std::make_unique<EaxEffect>();
if(index == 0) eax_effect_->init<EaxReverbCommitter>();
- //else if(index == 1) eax_effect_->init<EaxChorusCommitter>();
+ else if(index == 1) eax_effect_->init<EaxChorusCommitter>();
else eax_effect_->init<EaxNullCommitter>();
}