diff options
author | Chris Robinson <[email protected]> | 2010-12-01 18:33:17 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-12-01 18:33:17 -0800 |
commit | 9e8fb89a525c11685869d963c39e4f1076835d85 (patch) | |
tree | 5fdb70d80718e1ba7632e1b98fbb2fb4ffa0e883 /OpenAL32/Include/alSource.h | |
parent | 14441e0e5377884100ed0d3ae3bb753632b896ae (diff) |
Rename OUTPUTCHANNELS to something more descriptive
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; |