diff options
author | Chris Robinson <[email protected]> | 2014-11-22 12:58:54 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-11-22 12:58:54 -0800 |
commit | fb511351dfe1db70af47b27dfded83d588f61faf (patch) | |
tree | e38d317421f7d5d18c7e3018ee02c327c1d01192 /OpenAL32/Include/alu.h | |
parent | e41cfeca840f36f4d360fd86b86ee2087940c1e1 (diff) |
Remove an unnecessary union container
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 69452e72..0ff8ddbc 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -70,9 +70,7 @@ typedef struct DirectParams { ALfilterState HighPass; } Filters[MAX_INPUT_CHANNELS]; - union { - MixGains Gains[MAX_INPUT_CHANNELS][MAX_OUTPUT_CHANNELS]; - } Mix; + MixGains Gains[MAX_INPUT_CHANNELS][MAX_OUTPUT_CHANNELS]; } DirectParams; typedef struct SendParams { |