diff options
author | Chris Robinson <[email protected]> | 2020-12-28 08:04:23 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-28 08:04:23 -0800 |
commit | aae115c35a2b1899cfcaf443aa9a6da9b7647258 (patch) | |
tree | 66c551b2523c69ff1206978467d3887c803054ea /alc/effects/echo.cpp | |
parent | 15e05fcef882e3d50104db39d38019165c7995f9 (diff) |
Return an intrusive_ptr from EffectStateFactory::create
Diffstat (limited to 'alc/effects/echo.cpp')
-rw-r--r-- | alc/effects/echo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alc/effects/echo.cpp b/alc/effects/echo.cpp index fc33c853..b84e501a 100644 --- a/alc/effects/echo.cpp +++ b/alc/effects/echo.cpp @@ -155,7 +155,8 @@ void EchoState::process(const size_t samplesToDo, const al::span<const FloatBuff struct EchoStateFactory final : public EffectStateFactory { - EffectState *create() override { return new EchoState{}; } + al::intrusive_ptr<EffectState> create() override + { return al::intrusive_ptr<EffectState>{new EchoState{}}; } }; } // namespace |