diff options
author | Chris Robinson <[email protected]> | 2020-04-16 17:29:32 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-04-16 17:29:32 -0700 |
commit | 27ac637a66df64c4135b77ee123d1a02076b08a0 (patch) | |
tree | fb91318537aaa071000c1f4b340ed3822c01bc12 /alc/effects/reverb.cpp | |
parent | cf4a848fd0c42e85e5ce68e33120386d932e6375 (diff) |
Remove another unnecessary return value
Diffstat (limited to 'alc/effects/reverb.cpp')
-rw-r--r-- | alc/effects/reverb.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/alc/effects/reverb.cpp b/alc/effects/reverb.cpp index ac950731..60ae1020 100644 --- a/alc/effects/reverb.cpp +++ b/alc/effects/reverb.cpp @@ -531,7 +531,7 @@ struct ReverbState final : public EffectState { void lateFaded(const size_t offset, const size_t todo, const float fade, const float fadeStep); - bool deviceUpdate(const ALCdevice *device) override; + void deviceUpdate(const ALCdevice *device) override; void update(const ALCcontext *context, const ALeffectslot *slot, const EffectProps *props, const EffectTarget target) override; void process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, const al::span<FloatBufferLine> samplesOut) override; @@ -597,10 +597,10 @@ void ReverbState::allocLines(const float frequency) totalSamples += mLate.Delay.calcLineLength(length, totalSamples, frequency, 1); if(totalSamples != mSampleBuffer.size()) - decltype(mSampleBuffer){totalSamples}.swap(mSampleBuffer); + decltype(mSampleBuffer)(totalSamples).swap(mSampleBuffer); /* Clear the sample buffer. */ - std::fill(mSampleBuffer.begin(), mSampleBuffer.end(), std::array<float,NUM_LINES>{}); + std::fill(mSampleBuffer.begin(), mSampleBuffer.end(), decltype(mSampleBuffer)::value_type{}); /* Update all delays to reflect the new sample buffer. */ mDelay.realizeLineOffset(mSampleBuffer.data()); @@ -610,7 +610,7 @@ void ReverbState::allocLines(const float frequency) mLate.Delay.realizeLineOffset(mSampleBuffer.data()); } -bool ReverbState::deviceUpdate(const ALCdevice *device) +void ReverbState::deviceUpdate(const ALCdevice *device) { const auto frequency = static_cast<float>(device->Frequency); @@ -678,8 +678,6 @@ bool ReverbState::deviceUpdate(const ALCdevice *device) mAmbiSplitter[0][0].init(400.0f / frequency); std::fill(mAmbiSplitter[0].begin()+1, mAmbiSplitter[0].end(), mAmbiSplitter[0][0]); std::fill(mAmbiSplitter[1].begin(), mAmbiSplitter[1].end(), mAmbiSplitter[0][0]); - - return true; } /************************************** |