diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2020-08-28 00:09:46 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2020-08-28 00:09:46 -0700 |
commit | 1f486f820e97fd5ce1da40a87aa3b743800fb5b0 (patch) | |
tree | 04e70d2410fcaad3167899b81b2661b57c0488fe /alc/voice.h | |
parent | ecf30de36f6487c1f8a19ae0d03ba810078706f4 (diff) |
Use a separate structure for buffer storage
Diffstat (limited to 'alc/voice.h')
-rw-r--r-- | alc/voice.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alc/voice.h b/alc/voice.h index c87244fc..29ca0484 100644 --- a/alc/voice.h +++ b/alc/voice.h @@ -10,6 +10,7 @@ #include "almalloc.h" #include "alspan.h" #include "alu.h" +#include "buffer_storage.h" #include "devformat.h" #include "filters/biquad.h" #include "filters/nfc.h" @@ -221,7 +222,7 @@ struct Voice { ALuint mFrequency; ALuint mSampleSize; AmbiLayout mAmbiLayout; - AmbiNorm mAmbiScaling; + AmbiScaling mAmbiScaling; ALuint mAmbiOrder; /** Current target parameters used for mixing. */ |