aboutsummaryrefslogtreecommitdiffstats
path: root/core/effectslot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/effectslot.cpp')
-rw-r--r--core/effectslot.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/effectslot.cpp b/core/effectslot.cpp
index 51fb8d46..db8aa078 100644
--- a/core/effectslot.cpp
+++ b/core/effectslot.cpp
@@ -17,9 +17,3 @@ EffectSlotArray *EffectSlot::CreatePtrArray(size_t count) noexcept
void *ptr{al_calloc(alignof(EffectSlotArray), EffectSlotArray::Sizeof(count*2))};
return al::construct_at(static_cast<EffectSlotArray*>(ptr), count);
}
-
-EffectSlot::~EffectSlot()
-{
- if(mWetBuffer)
- mWetBuffer->mInUse = false;
-}