diff options
Diffstat (limited to 'alc/effects/distortion.cpp')
-rw-r--r-- | alc/effects/distortion.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alc/effects/distortion.cpp b/alc/effects/distortion.cpp index 8123f92f..46ca03d8 100644 --- a/alc/effects/distortion.cpp +++ b/alc/effects/distortion.cpp @@ -154,7 +154,8 @@ void DistortionState::process(const size_t samplesToDo, const al::span<const Flo struct DistortionStateFactory final : public EffectStateFactory { - EffectState *create() override { return new DistortionState{}; } + al::intrusive_ptr<EffectState> create() override + { return al::intrusive_ptr<EffectState>{new DistortionState{}}; } }; } // namespace |