diff options
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 8 |
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; |