aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-01-11 23:47:03 -0800
committerChris Robinson <[email protected]>2010-01-11 23:47:03 -0800
commit574792d2e1bf46f80fb257db6af68c47f5733b2e (patch)
tree8e6d555db4d349bd1d8e67df8fea03f3941ff9f6 /OpenAL32
parentab2eb5a60373fda56bcc65e3a82686994a315767 (diff)
Fix Windows compilation
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alSource.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index dd9295c0..2316dd9f 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -23,13 +23,13 @@ extern "C" {
#endif
typedef enum {
- POINT = 0,
- LINEAR,
- COSINE,
+ POINT_RESAMPLER = 0,
+ LINEAR_RESAMPLER,
+ COSINE_RESAMPLER,
RESAMPLER_MAX,
RESAMPLER_MIN = -1,
- RESAMPLER_DEFAULT = LINEAR
+ RESAMPLER_DEFAULT = LINEAR_RESAMPLER
} resampler_t;
extern resampler_t DefaultResampler;