diff options
author | Chris Robinson <[email protected]> | 2019-04-01 17:27:31 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-04-01 17:27:31 -0700 |
commit | 8781a32df56acb744a1185942bbf038aae07612d (patch) | |
tree | c7b1bf83823619c2ceadb98d4bf9bd13ef78afce /OpenAL32/Include | |
parent | da8494dd8a23a0e2b1c4ca4973e6311f32a5925c (diff) |
Copy the voice's ambisonic upsampler state when reallocating
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 9c33779d..3856bc72 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -255,7 +255,7 @@ struct ALvoice { InterpState mResampleState; std::array<ALfloat,MAX_INPUT_CHANNELS> mAmbiScales; - BandSplitter mAmbiSplitter[MAX_INPUT_CHANNELS]; + std::array<BandSplitter,MAX_INPUT_CHANNELS> mAmbiSplitter; struct { int FilterType; |