summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/sr1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c
index 601c94f211..b69a936aa4 100644
--- a/mp3lib/sr1.c
+++ b/mp3lib/sr1.c
@@ -557,14 +557,14 @@ void MP3_Init(){
else
#endif
#ifdef ARCH_X86
- if (gCpuCaps.cpuType >= CPUTYPE_I386)
+ if (gCpuCaps.cpuType == CPUTYPE_I586)
{
synth_func=synth_1to1_pent;
}
else
#endif
{
- synth_func = NULL;
+ synth_func = NULL; /* use default c version */
}
#endif
}