diff options
author | Chris Robinson <[email protected]> | 2010-04-08 13:11:21 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-04-08 13:11:21 -0700 |
commit | 1b1c76da341f446f926ffad44a9f7d12a4f0f2d5 (patch) | |
tree | 5e7a3f79d9452d209a25a518d4545ebadff99b1d /OpenAL32 | |
parent | 5db1aec1d1c909c71c657f0826bce0eac5cdf229 (diff) |
Invert device channel map array
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 7dea61b2..617119ff 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -275,7 +275,7 @@ struct ALCdevice_struct // Dry path buffer mix float DryBuffer[BUFFERSIZE][OUTPUTCHANNELS]; - Channel DevChannels[OUTPUTCHANNELS]; + ALuint DevChannels[OUTPUTCHANNELS]; // Contexts created on this device ALCcontext **Contexts; |