aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-08-29 01:09:04 -0700
committerChris Robinson <[email protected]>2012-08-29 01:11:55 -0700
commitde006947ac07585ff9688d87465c3034c8aed845 (patch)
treea673bf94f78978ddb657edeacb0eb82f559a9579 /OpenAL32
parent8a128e5d253176139a2315064cc21f8154dcfc45 (diff)
Increase MaxChannels to be a multiple of 4
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alu.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index f623589f..68a44177 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -129,16 +129,17 @@ enum Resampler {
enum Channel {
FrontLeft = 0,
- FrontRight,
- FrontCenter,
- LFE,
- BackLeft,
- BackRight,
- BackCenter,
- SideLeft,
- SideRight,
-
- MaxChannels
+ FrontRight, /* 1 */
+ FrontCenter, /* 2 */
+ LFE, /* 3 */
+ BackLeft, /* 4 */
+ BackRight, /* 5 */
+ BackCenter, /* 6 */
+ SideLeft, /* 7 */
+ SideRight, /* 8 */
+
+ /* Must be a multiple of 4 */
+ MaxChannels = 12,
};
enum DistanceModel {