diff options
author | Chris Robinson <[email protected]> | 2020-01-13 19:45:13 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-01-13 19:45:13 -0800 |
commit | e889282131a8d6bb4dd8efea6b4e1f65fe38f0f4 (patch) | |
tree | bf658729fbb0342e1ff23a72edd16052dc174497 /alc/voice.h | |
parent | a1a107f57662db090695fd7dde7712202c50af4b (diff) |
Get rid of an unnecessary struct
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 4bfee7bc..9e96bdc5 100644 --- a/alc/voice.h +++ b/alc/voice.h @@ -101,7 +101,7 @@ struct DirectParams { struct { HrtfFilter Old; HrtfFilter Target; - HrtfState State; + alignas(16) std::array<float,HRTF_HISTORY_LENGTH> History; } Hrtf; struct { |