diff options
author | Chris Robinson <[email protected]> | 2020-11-28 03:38:20 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-11-28 03:38:20 -0800 |
commit | 8750810f5cfceeffd5acf2f21e779d470d0dc88b (patch) | |
tree | 447b24c8d1b3ab926f2aa2ae40617938df1e9bb1 /alc/voice.h | |
parent | eb9b9fb4e59cadc308b8ebcdf3da59a961382224 (diff) |
Change a couple macros into constexpr variables
Diffstat (limited to 'alc/voice.h')
-rw-r--r-- | alc/voice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/voice.h b/alc/voice.h index 3f1642f1..bb3d5e02 100644 --- a/alc/voice.h +++ b/alc/voice.h @@ -242,7 +242,7 @@ struct Voice { std::array<TargetData,MAX_SENDS> mSend; struct ChannelData { - alignas(16) std::array<float,MAX_RESAMPLER_PADDING> mPrevSamples; + alignas(16) std::array<float,MaxResamplerPadding> mPrevSamples; float mAmbiScale; BandSplitter mAmbiSplitter; |