diff options
Diffstat (limited to 'alc/effects/null.cpp')
-rw-r--r-- | alc/effects/null.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/null.cpp b/alc/effects/null.cpp index 71544441..2d141e4e 100644 --- a/alc/effects/null.cpp +++ b/alc/effects/null.cpp @@ -15,7 +15,7 @@ struct NullState final : public EffectState { NullState(); ~NullState() override; - void deviceUpdate(const ALCdevice *device) override; + void deviceUpdate(const ALCdevice *device, const BufferStorage *buffer) override; void update(const ALCcontext *context, const EffectSlot *slot, const EffectProps *props, const EffectTarget target) override; void process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, @@ -39,7 +39,7 @@ NullState::~NullState() = default; * format) have been changed. Will always be followed by a call to the update * method, if successful. */ -void NullState::deviceUpdate(const ALCdevice* /*device*/) +void NullState::deviceUpdate(const ALCdevice* /*device*/, const BufferStorage* /*buffer*/) { } |