aboutsummaryrefslogtreecommitdiffstats
path: root/alc/hrtf.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-12-25 20:52:18 -0800
committerChris Robinson <[email protected]>2020-12-25 20:52:18 -0800
commit5f233a2c24de58fde98e08ad8acb6cfe1803d716 (patch)
treea62086d205cfa4d66719dd2d4b42eac7563ded39 /alc/hrtf.h
parent223f93e13d2a36375fa71251a2e565799cc2ab3e (diff)
Use more constexpr variables instead of macros
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 caa35a0a..56839abd 100644
--- a/alc/hrtf.h
+++ b/alc/hrtf.h
@@ -58,7 +58,7 @@ struct AngularPoint {
struct DirectHrtfState {
- std::array<float,HRTF_DIRECT_DELAY+BufferLineSize> mTemp;
+ std::array<float,HrtfDirectDelay+BufferLineSize> mTemp;
/* HRTF filter state for dry buffer content */
uint mIrSize{0};