diff options
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 154c9cfe..09ff330b 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -91,14 +91,14 @@ typedef struct ALsource struct { ALint Step; - ALfloat DryGains[OUTPUTCHANNELS]; + ALfloat DryGains[MAXCHANNELS]; FILTER iirFilter; - ALfloat history[OUTPUTCHANNELS*2]; + ALfloat history[MAXCHANNELS*2]; struct { ALfloat WetGain; FILTER iirFilter; - ALfloat history[OUTPUTCHANNELS]; + ALfloat history[MAXCHANNELS]; } Send[MAX_SENDS]; } Params; |