aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 97a4e55b..7f906232 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -60,16 +60,8 @@ static ResamplerFunc SelectResampler(enum Resampler Resampler, ALuint increment)
case PointResampler:
return Resample_point32_C;
case LinearResampler:
-#ifdef HAVE_SSE
- if((CPUCapFlags&CPU_CAP_SSE))
- return Resample_lerp32_SSE;
-#endif
return Resample_lerp32_C;
case CubicResampler:
-#ifdef HAVE_SSE
- if((CPUCapFlags&CPU_CAP_SSE))
- return Resample_cubic32_SSE;
-#endif
return Resample_cubic32_C;
case ResamplerMax:
/* Shouldn't happen */