diff options
Diffstat (limited to 'alc/effects/pshifter.cpp')
-rw-r--r-- | alc/effects/pshifter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alc/effects/pshifter.cpp b/alc/effects/pshifter.cpp index ac00bac1..3a577ce7 100644 --- a/alc/effects/pshifter.cpp +++ b/alc/effects/pshifter.cpp @@ -247,7 +247,8 @@ void PshifterState::process(const size_t samplesToDo, const al::span<const Float struct PshifterStateFactory final : public EffectStateFactory { - EffectState *create() override { return new PshifterState{}; } + al::intrusive_ptr<EffectState> create() override + { return al::intrusive_ptr<EffectState>{new PshifterState{}}; } }; } // namespace |