aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alSource.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-07-13 01:39:44 -0700
committerChris Robinson <[email protected]>2016-07-13 01:39:44 -0700
commit5106f035df7153efa411feb090ba22b1d756998b (patch)
tree0c6f3249b670564894525a1120a702c90dae89c4 /OpenAL32/Include/alSource.h
parente8202b915d63703e6f6dd00a085cefb24ad7b315 (diff)
Move the input channel array out of the DirectParams and SendParams
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r--OpenAL32/Include/alSource.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 2dd8229c..db138be1 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -51,8 +51,10 @@ typedef struct ALvoice {
ALuint Channels;
} SendOut[MAX_SENDS];
- DirectParams Direct;
- SendParams Send[MAX_SENDS];
+ struct {
+ DirectParams Direct;
+ SendParams Send[MAX_SENDS];
+ } Chan[MAX_INPUT_CHANNELS];
} ALvoice;