diff options
author | Chris Robinson <[email protected]> | 2020-12-25 20:52:18 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-12-25 20:52:18 -0800 |
commit | 5f233a2c24de58fde98e08ad8acb6cfe1803d716 (patch) | |
tree | a62086d205cfa4d66719dd2d4b42eac7563ded39 /alc/voice.h | |
parent | 223f93e13d2a36375fa71251a2e565799cc2ab3e (diff) |
Use more constexpr variables instead of macros
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 cb0b543c..1a49bd81 100644 --- a/alc/voice.h +++ b/alc/voice.h @@ -54,7 +54,7 @@ struct DirectParams { struct { HrtfFilter Old; HrtfFilter Target; - alignas(16) std::array<float,HRTF_HISTORY_LENGTH> History; + alignas(16) std::array<float,HrtfHistoryLength> History; } Hrtf; struct { |