aboutsummaryrefslogtreecommitdiffstats
path: root/core/device.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-10-28 20:07:45 -0700
committerChris Robinson <[email protected]>2022-10-28 20:07:45 -0700
commitbb88035a96e6794e4dd1085c2c11b046b7f5c8c7 (patch)
tree487716d54051d88b1bc85b648efa51b7a0308a9f /core/device.h
parentf1f3672f0b8c45b87fcf3b3b99868c274569eaf4 (diff)
Rename some variables to more clearly indicate their meaning
Diffstat (limited to 'core/device.h')
-rw-r--r--core/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/device.h b/core/device.h
index 31a88ee4..292c1730 100644
--- a/core/device.h
+++ b/core/device.h
@@ -189,7 +189,7 @@ struct DeviceBase {
/* Temp storage used for mixer processing. */
static constexpr size_t MixerLineSize{BufferLineSize + MaxResamplerPadding +
- DecoderBase::sMaxDelay};
+ DecoderBase::sMaxPadding};
static constexpr size_t MixerChannelsMax{16};
using MixerBufferLine = std::array<float,MixerLineSize>;
alignas(16) std::array<MixerBufferLine,MixerChannelsMax> mSampleData;