diff options
author | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-11-30 16:50:37 +0000 |
---|---|---|
committer | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-11-30 16:50:37 +0000 |
commit | d38ab4b67a686d1025f50309761d2511cefbd017 (patch) | |
tree | 51661c3a006b0046cec7f8bf283aa543908f2115 /mp3lib | |
parent | f7ae53c46a1ebda7e53cb1353f85b4a61dfef45c (diff) |
fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3220 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib')
-rw-r--r-- | mp3lib/sr1.c | 4 |
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 } |