aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alu.h
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r--OpenAL32/Include/alu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index 03c388b4..2dbd3107 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -136,7 +136,7 @@ inline void aluMatrixfSet(aluMatrixf *matrix, ALfloat m00, ALfloat m01, ALfloat
}
-enum ActiveFilters {
+enum {
AF_None = 0,
AF_LowPass = 1,
AF_HighPass = 2,
@@ -285,7 +285,7 @@ typedef struct ALvoice {
InterpState ResampleState;
struct {
- enum ActiveFilters FilterType;
+ int FilterType;
DirectParams Params[MAX_INPUT_CHANNELS];
ALfloat (*Buffer)[BUFFERSIZE];
@@ -294,7 +294,7 @@ typedef struct ALvoice {
} Direct;
struct {
- enum ActiveFilters FilterType;
+ int FilterType;
SendParams Params[MAX_INPUT_CHANNELS];
ALfloat (*Buffer)[BUFFERSIZE];