diff options
Diffstat (limited to 'core/voice.h')
-rw-r--r-- | core/voice.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/voice.h b/core/voice.h index 3b19abbb..169517d5 100644 --- a/core/voice.h +++ b/core/voice.h @@ -237,10 +237,8 @@ struct Voice { * now current (which may be overwritten if the buffer data is still * available). */ - static constexpr size_t LineSize{BufferLineSize + MaxResamplerPadding + - UhjDecoder::sFilterDelay}; - using BufferLine = std::array<float,LineSize>; - al::vector<BufferLine,16> mVoiceSamples{2}; + using HistoryLine = std::array<float,MaxResamplerPadding>; + al::vector<HistoryLine,16> mPrevSamples{2}; struct ChannelData { float mAmbiScale; |