aboutsummaryrefslogtreecommitdiffstats
path: root/alc/hrtf.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-11-28 03:38:20 -0800
committerChris Robinson <[email protected]>2020-11-28 03:38:20 -0800
commit8750810f5cfceeffd5acf2f21e779d470d0dc88b (patch)
tree447b24c8d1b3ab926f2aa2ae40617938df1e9bb1 /alc/hrtf.h
parenteb9b9fb4e59cadc308b8ebcdf3da59a961382224 (diff)
Change a couple macros into constexpr variables
Diffstat (limited to 'alc/hrtf.h')
-rw-r--r--alc/hrtf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/hrtf.h b/alc/hrtf.h
index 9bbe36b7..3b9a272c 100644
--- a/alc/hrtf.h
+++ b/alc/hrtf.h
@@ -88,7 +88,7 @@ struct DirectHrtfState {
alignas(16) HrirArray mCoeffs{};
};
- std::array<float,HRTF_DIRECT_DELAY+BUFFERSIZE> mTemp;
+ std::array<float,HRTF_DIRECT_DELAY+BufferLineSize> mTemp;
/* HRTF filter state for dry buffer content */
uint mIrSize{0};