diff options
author | Chris Robinson <[email protected]> | 2012-02-12 08:45:19 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-02-12 08:45:19 -0800 |
commit | e394d14cdab07cab5fce75a2e175a3439c8c8edd (patch) | |
tree | 221a0c63315c7b66ba75f397ca77b47db33ad270 /Alc/mixer.c | |
parent | 9f073b6f1b29a00d229e200f507bece1bd59336c (diff) |
Use more proper enum names for the resampler
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 8b3c754e..ed2f49a5 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -439,14 +439,13 @@ MixerFunc SelectMixer(enum Resampler Resampler) { switch(Resampler) { - case POINT_RESAMPLER: + case PointResampler: return Mix_ALfloat_point32; - case LINEAR_RESAMPLER: + case LinearResampler: return Mix_ALfloat_lerp32; - case CUBIC_RESAMPLER: + case CubicResampler: return Mix_ALfloat_cubic32; - case RESAMPLER_MIN: - case RESAMPLER_MAX: + case ResamplerMax: break; } return NULL; @@ -456,14 +455,13 @@ MixerFunc SelectHrtfMixer(enum Resampler Resampler) { switch(Resampler) { - case POINT_RESAMPLER: + case PointResampler: return Mix_Hrtf_ALfloat_point32; - case LINEAR_RESAMPLER: + case LinearResampler: return Mix_Hrtf_ALfloat_lerp32; - case CUBIC_RESAMPLER: + case CubicResampler: return Mix_Hrtf_ALfloat_cubic32; - case RESAMPLER_MIN: - case RESAMPLER_MAX: + case ResamplerMax: break; } return NULL; |