diff options
author | Chris Robinson <[email protected]> | 2015-10-23 15:11:34 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-10-23 15:11:34 -0700 |
commit | bca854baacf0c92038f0e2633fb92e9255b05603 (patch) | |
tree | 32055b17fe38b82f177704f192038dd2df4433fa /OpenAL32 | |
parent | 4813125d310292fc9c97a1892f102dadf1f3e836 (diff) |
Use one send gain per buffer channel
Diffstat (limited to 'OpenAL32')
-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 20eefa93..f4dfae64 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -139,7 +139,7 @@ typedef struct SendParams { /* Gain control, which applies to all input channels to a single (mono) * output buffer. */ - MixGains Gain; + MixGains Gains[MAX_INPUT_CHANNELS]; } SendParams; |