aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
Diffstat (limited to 'alc')
-rw-r--r--alc/hrtf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/hrtf.cpp b/alc/hrtf.cpp
index 85b75e07..b23f9d6f 100644
--- a/alc/hrtf.cpp
+++ b/alc/hrtf.cpp
@@ -296,7 +296,7 @@ void BuildBFormatHrtf(const HrtfEntry *Hrtf, DirectHrtfState *state,
{
using double2 = std::array<double,2>;
struct ImpulseResponse {
- std::array<double2,HRIR_LENGTH> hrir;
+ alignas(16) std::array<double2,HRIR_LENGTH> hrir;
ALuint ldelay, rdelay;
};